/* * SICAF-M - Estilos da Área de Autenticação
 * Cores: Azul Marinho (#001f3f) e Laranja (#FF851B)
 */

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Fundo cinza bem claro para destacar o formulário */
}

.auth-container {
    max-width: 400px;
    width: 100%;
    margin: 2rem auto;
}

/* Títulos */
.login-title {
    color: var(--sicaf-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.login-subtitle {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Estilização da Caixa Branca (Card) */
.login-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid var(--sicaf-dark); /* Detalhe superior em Azul Marinho */
}

/* Labels e Inputs */
.form-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.form-control-login {
    font-size: 0.95rem !important; /* Tamanho da fonte mais equilibrado */
    padding: 0.7rem 0.8rem;
    border-color: #dee2e6;
    color: #495057;
}

.form-control-login:focus {
    box-shadow: none;
    border-color: var(--sicaf-orange); /* Destaque em laranja no foco */
}

/* Grupo de Input (Ícones e Botão de Ver Senha) */
.input-group-text {
    background-color: #ffffff;
    border-color: #dee2e6;
    color: #ced4da;
    font-size: 1rem;
}

.btn-reveal-pass {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-left: none;
    color: #6c757d;
    transition: all 0.2s;
}

.btn-reveal-pass:hover, .btn-reveal-pass:active {
    background-color: #ffffff !important;
    color: var(--sicaf-dark) !important;
    border-color: #dee2e6 !important;
}

/* Botão de Submissão */
.btn-login-submit {
    background-color: var(--sicaf-dark);
    color: #ffffff;
    border: none;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-login-submit:hover {
    background-color: var(--sicaf-navy);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.2);
}

/* Links Adicionais */
.small-link {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}

.small-link:hover {
    color: var(--sicaf-orange);
}

.register-link {
    font-size: 0.85rem;
    color: var(--sicaf-dark);
    font-weight: 700;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

/* Divisor */
.divider {
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}