/* Estilos específicos para a página de login */


/* Login Box */
.login-box {
    margin: 0 auto;
    width: 400px;
    height: auto;
    margin-top: -150px;
    max-width: 100%;
}

/* Card de Login */
.login-box .card {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-box .card-body {
    padding: 30px !important;
}


/* Logo */
.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.login-logo a {
    color: #444;
    text-decoration: none;
}

/* Mensagem de Login */
.login-box-msg {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

/* Campos de Input e Ícones */
.login-box .input-group {
    margin-bottom: 1.5rem;
}

.login-box .form-control {
    height: 45px;
    font-size: 14px;
    border-right: none;
}

.login-box .input-group-text {
    background-color: white;
    border-left: none;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
}

.login-box .input-group-text .fas {
    font-size: 18px;
    color: #666666;
}

@media (max-width: 576px) {
    .login-box, .register-box {
        width: 90% !important;
    }
}

/* Estados dos campos */
.login-box .form-control:focus {
    border-right: none;
    box-shadow: none;
}

.login-box .form-control:focus+.input-group-append .input-group-text {
    border-left: none;
    border-color: #80bdff;
}

/* Checkbox Lembrar-me */
.login-box .icheck-primary {
    margin-bottom: 15px;
    text-align: center;
}

/* Botão de Login */
.login-box .btn-primary {
    height: 45px;
    background-color: #00ADEF !important;
    border-color: #00ADEF !important;
    border-radius: 22.5px;
    padding: 0 25px;
    font-size: 16px;
    width: 140px;
    max-width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.login-box .btn-primary:hover {
    background-color: #0095d1 !important;
    border-color: #0095d1 !important;
    box-shadow: 0 2px 8px rgba(0, 173, 239, 0.3);
}

/* Layout do Formulário */
.login-box .row {
    justify-content: center;
}

.login-box .col-8,
.login-box .col-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

/* Footer */
.login-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    /* Branco sólido */
    text-align: center;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra suave opcional */
}

.login-footer .footer-banner-container {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background: #ffffff;
    /* Branco sólido */
}

.login-footer .footer-banner {
    max-width: 700px;
    height: auto;
    max-height: 70px;

}

.login-footer .copyright {
    padding: 10px;
    background: #ffffff;
    /* Branco sólido */
    color: #869099;
    font-size: 14px;
    border-top: 1px solid #dee2e6;
}

/* Ajuste responsivo do footer */
@media (max-width: 768px) {
    .login-footer {
        margin-top: 40px;
    }

    .login-footer .footer-banner {
        max-width: 85%;
        max-height: fit-content;
    }
}

@media (max-width: 480px) {
    .login-footer .footer-banner {
        max-width: 85%;
        max-height: fit-content;
    }
}

.login-logo-img{
    max-width: 200px;
}