/* css/teti-auth.css - Identidade Visual Teti (Tipográfica) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/* Importando a fonte Labrada para o Logo */
@import url('https://fonts.googleapis.com/css2?family=Labrada:wght@600;700;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

:root {
    /* Cores Teti */
    --teti-brand: #00bcd4;       /* Cyan */
    --teti-brand-dark: #00acc1;
    --teti-accent: #e91e63;      /* Pink */
    --bg-page: #ffffff;
    --text-main: #212121;
    --text-muted: #757575;
    --input-bg: #f5f5f5;
    --border-color: #e0e0e0;
    
    @media (prefers-color-scheme: dark) {
        --bg-page: #121212;
        --text-main: #e0e0e0;
        --text-muted: #a0a0a0;
        --input-bg: #1e1e1e;
        --border-color: #333333;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background-color 0.3s;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

/* --- LOGOTIPO TIPOGRÁFICO --- */
.brand-area { margin-bottom: 32px; }

/* Removemos a img .brand-logo e usamos texto */
.brand-text-logo {
    font-family: 'Labrada', serif; /* Fonte Solicitada */
    font-weight: 900; /* Extra Bold para impacto */
    font-size: 64px; /* Tamanho grande */
    color: var(--teti-brand);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px; /* Letras juntinhas estilo logo */
    /* Opcional: Efeito de brilho suave no texto */
    text-shadow: 0 4px 15px rgba(0, 188, 212, 0.25);
}

.brand-title-secondary {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 16px;
}

.brand-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Formulário e Inputs */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    background-color: var(--input-bg);
    color: var(--text-main);
    font-size: 16px;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--teti-brand);
    background-color: transparent;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

/* Botões */
.btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.1s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background-color: var(--teti-brand);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.btn-social {
    background-color: var(--input-bg);
    color: var(--text-main);
    margin-top: 12px;
}
.btn-social img { width: 20px; height: 20px; }

/* Links */
.auth-footer {
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-muted);
}
.link-teti { color: var(--teti-brand); text-decoration: none; font-weight: 600; }

/* Toast */
.toast-container {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    z-index: 100; width: 90%; max-width: 350px;
}
.toast {
    background: #333; color: white; padding: 12px 16px; border-radius: 8px;
    margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
    font-size: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); animation: slideDown 0.3s ease;
}
.toast.error { background: #d32f2f; }
.toast.success { background: #388e3c; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }