body {
    background-color: #75bcb6;
}

.site-background {
    top: 0;
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../src/loginbg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.7;
}

.banner {
    width: 400px;
    height: 104px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.btn {
    display: inline-block;
    width: 250px;
    background-color: #75bcb6;
    border-color: #75bcb6;
}

.btn:hover,
.btn:active,
.btn:focus {
    outline: none !important;
    background-color: #73a8a3 !important;
    border-color: #73a8a3 !important;
}

.form-control {
    display: inline-block;
    width: 250px;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0px 1000px #ececec inset;
    outline: none !important;
    border-bottom: solid 1px #aaa;
}

.form-control:focus {
    box-shadow: 0 0 0px 1000px #e0fbf4 inset;
}

.form {
    background-color: rgb(224, 251, 244, 0.9);
    width: 400px;
    height: 500px;
    display: inline-block;
    text-align: center;
    justify-content: center;
    border: 4px;
    border-color: rgba(115, 168, 163, 0.9);
    border-style: solid;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

input[type="reset"] {
    margin-left: 0 !important;
}

h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #545b5a;
}

.register-group {
    margin-top: 40px;
}

.footer {
    display: flex;
    justify-content: center;
}

.dc-banner {
    width: 400px;
}

@media only screen and (max-width: 440px) {
    .site-background {
        display: none;
    }
    .wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .form {
        background-color: rgb(240, 248, 255, 1);
        border: none;
    }
    .banner {
        margin-top: 0;
        width: 100%;
    }
    .dc-banner {
        width: 100%;
    }
}