/* --- Variáveis Globais (Cores e Fontes) --- */
:root {
    --cor-primaria: #007bff;
    --cor-sucesso: #28a745;
    --cor-erro: #dc3545;
    --cor-fundo-pagina: #f4f7f6;
    --cor-caixa: #ffffff;
    --cor-texto: #333;
    --cor-texto-label: #555;
    --sombra-caixa: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- Reset Básico e Fundo --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--cor-fundo-pagina);
    color: var(--cor-texto);
    line-height: 1.6;
}

/* --- 1. O Container Principal (Centralizador) --- */
.container-login {
    background: #2d8cf3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

/* --- 2. A "Tela Branca Centralizada" (`.login`) --- */
.login {
    background-color: var(--cor-caixa);
    padding: 2.5rem; /* 40px */
    border-radius: 8px;
    box-shadow: var(--sombra-caixa);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- 3. Logo e Título --- */
.img-login {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.img-login img {
    width: 100%;
    height: 100%;
}

.h1-login {
    font-size: 1.75rem; /* 28px */
    color: var(--cor-texto);
    margin-bottom: 2rem;
}

/* --- 4. Formulário e Campos --- */
form {
    width: 100%;
}

.form-email,
.form-senha {
    width: 100%;
    margin-bottom: 1.25rem;
}

form label {
    display: block;
    font-weight: 600;
    color: var(--cor-texto-label);
    margin-bottom: 0.5rem; /* 8px */
}

form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

form input[type="email"]:focus,
form input[type="password"]:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

/* --- 5. Botão de Entrar --- */
form button[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-caixa);
    background-color: var(--cor-primaria);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #0056b3; /* Um azul mais escuro */
}


/* --- 6. O Pop-up de Erro (Estilo "Toast" no TOPO) --- */
.pop-up-erro {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1000;
    
    /* Posição: 30px abaixo do topo */
    top: 30px; 
    left: 50%;
    
    /* Estado inicial: escondido 100px ACIMA da posição final */
    transform: translate(-50%, -100px); 
    
    opacity: 0;
    visibility: hidden;
    
    background-color: var(--cor-erro);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    /* A animação "suave" */
    transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

/* Classe que o JS adiciona para "cair" */
.pop-up-erro.show {
    /* Posição final: desliza "para baixo" */
    transform: translate(-50%, 0); 
    opacity: 1;
    visibility: visible;
}

/* --- Estilos de dentro do Toast --- */
.pop-up-erro-ico {
    margin-right: 1rem;
}

.pop-up-erro-ico p {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.pop-up-erro-descricao p {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

/* Esconde as partes que não usamos no "toast" */
.pop-up-erro-titulo,
.pop-up-erro-descricao p:last-child,
[type="pop-up-erro-butao"] {
    display: none;
}