html{
    overflow-y: hidden;
}
main{
    background-color: white;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

#bannerLogin{
    height: 100vh;
    background-color: black;
    /* background-image: url(/static/images/bg-login.jpg); */
    background-size: cover;    
    padding: 0;
}

#bannerLogin .filter{
    display: flex;
    height: 100%;
    width: 100%;
    background-color: rgba(200, 212, 230, 0.781);

}
#bannerLogin .filter img{
    max-height: 500px;
}
a{
    text-decoration: none;
}
.btn-primary{
    border-color: #547DCD;
    background-color: #547DCD;
}

@media (max-width: 600px)
{    
    #bannerLogin{
        display: none;
    }
    .col-4{
        height: 100vh;
        width: 100% !important;        
    }
}

.btn{
    border-radius: 0;
}

.btn.btnValidar{
    background-color: rgb(168, 168, 168);
}

.btn_text.text_loading{
    display: none;
}

.btn_loading_image{
    display: none;
}

.btn_loading_image.loading_image{
    display: block;
    width: 20px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

input{
    border-radius: 0;
}


.form-control.passwordInput{
    padding: .375rem 1.9rem .375rem .75rem;
}

/* TOGGLE VIEW PASSWORD */
.mb-3 {
    position: relative;
}
.toggle-password {
    position: absolute;
    top: 73%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    pointer-events: auto;
    color: #777; /* Cor mais suave para o ícone */
}



