body{
    display: flex; 
    background-image: url(../../utils/img/login-gradient-bg.png); 
    background-size: cover;
}

#form-registro{
    display: none;
}

#form-login{
    display: block;
}

#form-send-recovery-email{
    display: none;
}

.titulo{
    text-align: center;
}

.mensagem-login-registro{
    padding: 20px;
    text-align: center;
    display: none;
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.logo-container{
    width: 100%;
    height: 40%;
    display: flex;
}

.logo{
    margin: auto;
    padding: 30px;
    width: 100%;
    max-width: 300px;
}

.login-main-container{
    display: flex;
    flex-direction: row; 
    height: 85%; 
    width: 85%;
    margin: auto;
}

/* .login-image-container{
    display: flex;
    flex-direction: row;
    width: 65%; 
    background: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 30%, 
            rgba(0, 0, 0, 0.9) 80%
        ),
        url(../../utils/img/half-zilo.png) right 100%/60% no-repeat, 
        linear-gradient(315deg,
            rgba(61, 97, 114, 0.55)
        ), 
        url(../../utils/img/vessel-bg.png) 80% 75%/160% no-repeat;
    border-top-left-radius: 30px; 
    color: white !important; 
    align-items: end; 
    padding: 3%
} */
.login-image-container{
    display: flex;
    flex-direction: row;
    width: 65%; 
    background: 
        linear-gradient(180deg,
            rgba(255, 255, 255, 0) 30%, 
            rgba(0, 0, 0, 0.9) 80%
        ),
        url(../../utils/img/ZILO\ E\ FUNDO\ JUNTOS.png) center/cover no-repeat;
    border-top-left-radius: 30px; 
    color: white !important; 
    align-items: end; 
    padding: 3%
}

.login-image-container h1{
    font-size: 6rem; 
    font-weight: 400;
    line-height: 0.9;
    color: white; 
}

.login-image-container p{
    font-size: 1.5rem;
}

.login-form-container{
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-bottom-right-radius: 30px;
}

.login-form-container-content{
    padding: 0 30px;
    width: 80%;
    height: 100%;
}

.login-page-form{
    width: 100%;
    height: fit-content;
}

.login-page-form input{
    margin: 0 0 10px 0;
}
.login-page-form button{
    margin: 0 0 0 0;
}

.login-page-form input[type="checkbox"]{
    width: 17px;
    height: 17px;
    margin: auto 5px auto 0;
}

@media (max-width: 1800px ) {
    .login-image-container h1{
        font-size: 5.5rem; 
    }
    .login-image-container p{
        font-size: 1.3rem;
    }
}

@media (max-width: 1600px ) {
    .login-image-container h1{
        font-size: 5rem; 
    }
    .login-image-container p{
        font-size: 1.1rem;
    }
}
@media (max-width: 1200px ) {
    .login-image-container h1{
        font-size: 4.5rem; 
    }
    .login-image-container p{
        font-size: 0.9rem;
    }
}
@media (max-width: 1000px ) {
    .login-image-container h1{
        font-size: 4rem; 
    }
    .login-image-container p{
        font-size: 0.7rem;
    }
}

@media (max-width: 1023px) {
    .logo-container {
        height: 30%;
    }
    body{
        background:            
                linear-gradient(180deg,
                rgba(61, 97, 114, 0.55) 1%, 
                rgba(0, 0, 0, 1) 50%
            );
    }
    .login-main-container{
        position: absolute;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
    .login-image-container{
        position: absolute;
        top: 0;
        width: 100%;
        height: 60%;
        background: 
            linear-gradient(180deg,
                rgba(255, 255, 255, 0) 30%, 
                rgba(0, 0, 0, 0.65) 80%
            ),
            url(../../utils/img/ZILO\ TAMANHO\ MOBILE.png) 100% 15%/100% no-repeat; 
        border-radius: 0;
        animation: fade-in 2.1s ease-in;
    }

    .login-image-container-content{
        display: none;
    }
    .login-form-container-content{
        opacity: 0;
        animation: fade-in 2s ease;
        animation-fill-mode: forwards;
    }

    .login-form-container{
        position: absolute;
        bottom: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 50%;
        animation: grow 1s alternate;
    }
    @keyframes grow {
        from {
            height: 0;
        }
        to {
            height: 50%;
        }
    }
    @keyframes fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}