* {
    margin: 0;
    padding: 0;
    border: none;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
}

@font-face {
    font-family: MontserratLight;
    src: url(../fonts/Montserrat-Light.ttf);
}

@font-face {
    font-family: MontserratRegular;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: MontserratBold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

body {
    overflow: hidden;
    font-family: MontserratRegular;
}

.login {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-form {
    height: 100vh;
}

.greenville-residence-login {
    background: linear-gradient(rgba(18, 31, 28, .3), rgba(18, 31, 28, .3)), url(../media/greenville_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.login-form .detail label,
.login-form .detail input {
    display: block;
    width: 100%;
}

.login-form input {
    border-bottom: 2px solid #c09247;
    color: #C09247;
    padding: 6px;
    background-color: transparent;
}

.login-form .detail {
    margin: 10px 0;
}

.greenville-residence {
    position: absolute;
    top: 30%;
    right: 20px;
    text-align: center;
    width: 100%;
    color: #fff;
}

.greenville-residence img {
    width: 100px;
    height: 100px;
}

.login-form img {
    width: 200px;
    height: 150px;
    margin-bottom: 30px;
    object-fit: cover;
    object-position: center;
}

.login-form form {
    text-align: left;
}

.login-form form button {
    display: inline-block;
    border: 1px solid #C09247;
    background-color: #C09247;
    color: #fff;
    padding: 6px 24px;
    border-radius: 4px;
    transition: all .5s ease;
    width: 100%;
}

.login-form form button:hover {
    background-color: #C09247;
    color: #fff;
}

.choose-saved input,
.choose-saved label {
    display: inline-block;
}

.login-form form .choose-saved input[type="checkbox"] {
    appearance: none;
    border: 2px solid #C09247;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-grid;
    place-content: center;
    padding: 0;
    margin-right: 10px;
}

.login-form form .choose-saved input[type="checkbox"]:before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: #C09247;
}

.login-form form .choose-saved input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.login-form form .password {
    margin: 20px 0;
}

.login-form form .password a {
    color: #C09247;
    text-decoration: none;
    transition: all .5s ease;
}

.login-form form .password a:hover {
    text-decoration: underline;
}

.form {
    background-color: rgba(10, 43, 35, .6);
    padding: 40px;
    color: #C09247;
}

.login-form input {
    color: #C09247;
    border-radius: 4px;
}

.login-form label {
    color: #fff;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 50vh;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
    filter: drop-shadow(-1px -1px 0px #c09247) drop-shadow(1px -1px 0px #c09247) drop-shadow(2px 2px 0px #c09247) drop-shadow(-1px 2px 0px #c09247);
    opacity: .1;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
    filter: drop-shadow(-1px -1px 0px #c09247) drop-shadow(1px -1px 0px #c09247) drop-shadow(2px 2px 0px #c09247) drop-shadow(-1px 2px 0px #c09247);
    opacity: .5;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
    opacity: .4;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
    opacity: .3;
}
.invalid-feedback {
    /* background: #b02a37; */
    color: #fff;
    padding: 2px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
}

.needs-validation .detail input::placeholder {
    color: rgb(234 20 41);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 992px) {
    .waves {
        min-height: 30vh;
    }
}

@media (max-width: 576) {
    .greenville-residence {
        top: 20%;
    }
    .waves {
        height: 140px;
        min-height: 40px;
    }
}
