body, html{
    margin:0; 
    padding: 0;
    overflow: hidden;
    color: #fff;
}

* {
    box-sizing: border-box;
}

.background-img {
    background-image: url('../assets/images/background/LOBBY.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 2s ease-in-out;
    height: 100vh;
    filter: blur(1.5px); 
    transform: scale(1.02);
}

#email,
#password,
#login {
    border-radius: 1.5em;
}

#email,
#password {
    background-color: rgba(0, 0, 0, 0.7);
    border: 0em;
    color: #fff;
    margin-top: .5em;
}

#email::placeholder,
#password::placeholder {
    color: #fff;
}

#login {
    background-color: #84724C;
    border: 0;
    width: 100%;
}

#email:focus {
    background-color: rgba(0, 0, 0, 0.5);
}

.card {
    position: relative;
    background-color: rgba(255,255,255,0.3);
    border:0em;
    height: 20em;
}

.goodrich-suites-logo {
    position: absolute;
    top: 4em;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8.5em;
    transition: .5s ease-in-out;
}

.login-box {
    position:absolute;
    top:45%;
    left:51%;
    transform: translate(-50%, -50%);
    width:35vw;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /* color: #fff !important; */
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
    
}

@media only screen and (max-width: 720px) {
    .card {
        position: relative;
        background-color: rgba(255,255,255,0.3);
        border:0em;
        height: 18em;
    }

    .goodrich-suites-logo {
        position: absolute;
        top: 3.5em;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 6.5em;
        transition: .5s ease-in-out;
    }

    form {
        margin-top:-2em;
    }

    .login-box {
        position:absolute;
        top:45%;
        left:52.5%;
        transform: translate(-50%, -50%);
        width:80vw;
    }
}

@media only screen and (max-width: 812px)  and (min-width: 721px) {
    .login-box {
        position:absolute;
        top:45%;
        left:52.5%;
        transform: translate(-50%, -50%);
        width:60vw;
    }

    form {
        margin-top:-1em;
    }

    .goodrich-suites-logo {
        position: absolute;
        top: 4em;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 7em;
        transition: .5s ease-in-out;
    }
}

@media only screen and (max-width: 880px)  and (min-width: 813px) {
    .login-box {
        position:absolute;
        top:48%;
        left:52.5%;
        transform: translate(-50%, -50%);
        width:60vw;
    }

    form {
        margin-top:-.5em;
    }

    .goodrich-suites-logo {
        position: absolute;
        top: 4em;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 8em;
        transition: .5s ease-in-out;
    }
}