#auth .image-banner {
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#auth .image-banner .banner-bottom-content p {
    color: white;
    display: inline-block;
    margin-left: 4rem;
    font-weight: 300;
    font-size: 14px;
}

#auth .image-banner .banner-bottom-content img {
    float: right;
    margin-right: 1rem;
    border-radius: 25px;
}

#auth .login-form {
    width: 85%;
}

#auth .login-form .login-btn {
    padding: 4px 0;
    border: none;
    background-color: var(--dark-blue);
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

#auth .login-form .register-btn {
    padding: 4px 0;
    border: none;
    background-color: var(--dark-blue);
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

#auth .login-form .buscar-btn {
    padding: 4px 0;
    border: none;
    background-color: var(--dark-blue);
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

#auth .login-form .google-login-btn {
    padding: 4px 0;
    border: 1.2px solid var(--dark-blue);
    background-color: white;
    color: var(--dark-blue);
    border-radius: 5px;
    opacity: 1;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

#auth .login-form .login-cancel {
    padding: 4px 16px;
    border: none;
    text-decoration: none;
    background-color: transparent;
    color: var(--dark-blue);
    border-radius: 5px;
    opacity: 1;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

#auth .login-form .login-btn:hover,
#auth .login-form .google-login-btn:hover,
#auth .login-form .login-cancel:hover,
#auth .login-form .register-btn:hover,
#auth #register-model .model-content button:hover
{
    cursor: pointer;
    opacity: 0.8;
}

#auth #register-model{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    top: 0;
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
}

#auth #register-model .model-content{
    width: 700px;
    height: 400px;
    background-color: white;
    border-radius: 5px;
    border: none;
    padding: 3rem;
    text-align: center;
}


#auth #register-model .model-content h1{
    color: var(--dark-blue);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1.5rem;
}

#auth #register-model .model-content h6{
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1rem;
}

#auth #register-model .model-content button{
    width: 50%;
    margin-top: 3rem;
    padding: 4px;
    border-radius: 5px;
    border-color: var(--dark-blue);
    color: var(--dark-blue);
    text-transform: uppercase;
    background-color: white;
    font-weight: 700;
    opacity: 1;
    transition: all 0.3s ease;
}


/*Responsive Media Queries*/

/* Smartphones ---------------- */
@media only screen and (max-width: 767px) {
    #login-form-id .login-logo{
        padding: 0 !important;
        height: 100vh
    }
    #login-form-id .login-logo img{
        margin: 1rem  0  0 1rem
    }

    #login-form-id .login-content{
        padding: 1rem !important;
    }
    #auth .login-form{
        width: 100%;
    }
    #auth .first-group{
        margin-top: 1rem !important;
    }
    #auth .image-banner{
        display: none !important;
    }
    #auth .card-section-top{
        position: relative !important;
    }
    #auth .card-section{
        width: 90% !important;
        padding: 2rem !important;
        background-color: var(--light-white-v2);
    }
    #auth .banner-bottom-content{
        display: block !important;
        text-align: center;
        padding: 1rem;
    }
    #auth .google-login-btn img{
        margin: 0 !important;
    }

    .model-content{
        padding: 1rem !important;
    }
}

/*Tablet*/
@media only screen and (min-width:768px) and (max-width: 1023px) {

    #login-form-id .login-content{
        padding: 2rem !important;
    }
    #auth .login-form{
        width: 75%;
    }
    #auth .first-group{
        margin-top: 2rem !important;
    }
    #auth .image-banner{
        height: 33vh;
    }
    #auth .register{
        height: 14vh;
    }
    #auth .reset-pass{
        height: 51vh;
    }
    #auth .card-section-top{
        position:  relative !important;
    }

    #auth .card-section{
        padding: 0 !important;
    }

    #auth .image-banner .banner-bottom-content{
        margin-bottom: 1rem !important;
    }

    .model-content{
        padding: 2rem !important;
    }

}