/* =============================================================
   Eveilo — auth.css
   Ekrany gościa: logowanie, rejestracja, reset hasła.
   Wymaga base.css.
   ============================================================= */

.auth-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--c-bg);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.auth-brand .logo-mark { font-size: 1.75rem; }
.auth-brand .logo-text { font-size: 1.25rem; font-weight: 700; }
.auth-brand .logo-img { height: 40px; width: auto; }

.auth-card {
    width: 100%;
    max-width: 26rem;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.auth-intro { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 1rem; }

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}
.auth-actions.end { justify-content: flex-end; }

.auth-link { font-size: 0.85rem; color: var(--c-muted); text-decoration: underline; }
.auth-link:hover { color: var(--c-text); }

.auth-status { font-size: 0.85rem; font-weight: 500; color: var(--c-ok); margin-bottom: 1rem; }

/* Przełącznik języka na ekranach gościa */
.auth-lang { display: flex; gap: 0.25rem; margin-top: 1.5rem; }
.auth-lang .lang-btn {
    padding: 0.2rem 0.45rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid var(--c-border);
    color: var(--c-muted);
}
.auth-lang .lang-btn.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
