/* ===== LOGIN ===== */

/* Centralização da página */
body {
    min-height: 100vh;
    margin: 0;

    display: flex;
    flex-direction: column; /* <<< A PORRA DO AJUSTE */
    align-items: center;
    justify-content: center;

    background-color: #f4f4f9;
}

/* Título */
.login-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Formulário */
.login-form {
    width: 100%;
    max-width: 380px;

    padding: 24px;

    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Grupo de campos */
.login-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

/* Label */
.login-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* Inputs */
.login-input {
    height: 38px;
    padding: 0 10px;

    border: 1px solid #ccc;
    border-radius: 6px;

    font-size: 14px;
    color: #333;

    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}

/* Botão */
.login-btn {
    width: 100%;
    height: 40px;

    border: none;
    border-radius: 6px;

    background: #007bff;
    color: #fff;

    font-size: 15px;
    font-weight: 600;
    cursor: pointer;

    transition: background 0.2s;
}

.login-btn:hover {
    background: #0056b3;
}

/* Mensagens */
.login-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.login-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}
