/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1e1e2f; /* Cor do modo escuro para consistência */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.login-container {
    background: #2c2c54; /* Um azul escuro de destaque */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
}

.login-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f9ca24; /* Destaque amarelo */
    margin-bottom: 5px;
}

.login-container p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 25px;
}

#password {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #1e1e2f;
    color: #fff;
    text-align: center;
}

.btn-acessar {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(90deg, #f9ca24, #f0932b);
    color: #1e1e2f; 
    transition: transform 0.2s;
}

.btn-acessar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 202, 36, 0.4);
}

.error-message {
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 20px;
    font-size: 0.9rem;
    display: none; /* Escondida por defeito */
}