/* --- CONFIGURAÇÃO GERAL E FUNDO --- */
.login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    min-height: calc(100vh - 180px); /* Garante que o footer fique embaixo */
    
    /* MUDANÇA 1: Fundo Off-White (Cinza muito claro) */
    /* Isso destaca o quadrado branco do formulário no meio */
    background-color: #f9f9f9; 
}

/* --- O CARTÃO DO FORMULÁRIO --- */
.login-container {
    background-color: #ffffff; /* Fundo branco puro */
    padding: 50px 40px; /* Mais espaço interno para respirar */
    width: 100%;
    max-width: 450px; /* Um pouco mais largo */
    text-align: center;
    
    /* MUDANÇA 2: Borda fina em vez de sombra */
    border: 1px solid #e5e5e5; 
    
    /* Opcional: Uma sombra super suave apenas para dar profundidade (estilo Apple) */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
}

.login-container h1 {
    font-size: 18px; /* Levemente menor e mais chique */
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
}

/* --- FORMULÁRIOS E INPUTS (Minimalistas) --- */
.form-group {
    margin-bottom: 30px; /* Mais espaço entre os campos */
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 10px; /* Label bem pequena e técnica */
    font-weight: 700;
    margin-bottom: 8px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    font-family: inherit;
    color: #000;
    
    /* Estilo Apenas Linha */
    border: none;
    border-bottom: 1px solid #ddd; /* Linha cinza clara */
    background: transparent;
    border-radius: 0;
    
    transition: all 0.3s ease;
    outline: none;
}

/* Efeito ao clicar: Linha fica preta */
.form-group input:focus {
    border-bottom-color: #000;
}

.form-group input::placeholder {
    color: #d1d1d1;
    font-weight: 300;
}

/* --- LINKS (Esqueceu senha) --- */
.form-label-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.forgot-password {
    font-size: 10px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.forgot-password:hover {
    color: #000;
}

/* --- BOTÕES --- */
.form-actions {
    margin-top: 45px;
    display: grid;
    gap: 15px;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #000;
}

/* Botão Preto (Principal) */
.btn-primary {
    background-color: #000;
    color: #fff;
}
.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Botão Branco (Secundário) */
.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #ddd;
}
.btn-secondary:hover {
    border-color: #000;
}

/* Botão Google */
.btn-google {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.btn-google:hover {
    background-color: #f7f7f7;
    border-color: #ccc;
}

/* Divisor "OU" */
.divisor {
    text-align: center;
    margin: 10px 0;
    font-size: 10px;
    color: #aaa;
    font-weight: 600;
}
/* --- NOTIFICAÇÃO TOAST (Substituto do Alert) --- */
.toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #000; /* Fundo Preto */
    color: #fff; /* Texto Branco */
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 30px;
    transform: translateX(-50%); /* Centraliza */
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
}

.toast-notification.show {
    visibility: visible;
    opacity: 1;
    top: 50px; /* Desliza um pouco pra baixo */
}

.toast-notification.success {
    border-left: 5px solid #4CAF50; /* Listra verde lateral */
}

.toast-notification.error {
    border-left: 5px solid #f44336; /* Listra vermelha lateral */
}