/* =========================================
   Tema de Login - URCA 
   Cores principais: Verde URCA (#1a5d3c), Dourado (#dcb836)
   ========================================= */

/* Estilo global da página */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6; /* Fundo cinza bem claro */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
}

/* Container principal do formulário (O "Card" de login) */
.login-container {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1a5d3c; /* Detalhe em Verde URCA no topo */
    box-sizing: border-box;
}

/* Cabeçalhos e Títulos */
.login-container h1, 
.login-container h2 {
    text-align: center;
    color: #1a5d3c; /* Verde institucional */
    margin-bottom: 10px;
    font-weight: 600;
}

.login-container p {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
}

/* Grupos de input (Label + Campo) */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Labels (CPF, Senha, etc) */
label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444444;
}

/* Campos de texto e senha */
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

/* Efeito ao focar no campo de texto */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #1a5d3c;
    box-shadow: 0 0 0 3px rgba(26, 93, 60, 0.15);
    background-color: #ffffff;
}

/* Botão de Entrar */
button, 
input[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a5d3c; /* Verde URCA */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}

/* Efeito Hover do Botão */
button:hover, 
input[type="submit"]:hover {
    background-color: #13462d; /* Verde mais escuro */
}

/* Efeito Clique do Botão */
button:active, 
input[type="submit"]:active {
    transform: scale(0.98);
}

/* Links do rodapé (Novo Cadastro, Recuperar Senha) */
.login-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.login-links a {
    color: #1a5d3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #dcb836; /* Dourado da URCA no hover */
    text-decoration: underline;
}

/* Rodapé de Copyright */
.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999999;
}