/**
 * Auth-Layout-Styles (auth.php)
 *
 * Minimale Styles fuer Authentifizierungsseiten (Login, Passwort-Reset).
 * BFSG/WCAG 2.1 Level AA konform.
 */

/* Heller Hintergrund fuer die gesamte Seite */
body {
    background-color: #f5f7fa;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hauptbereich zentriert, nimmt verfuegbaren Platz ein */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Dezenter Footer */
.auth-footer {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    background-color: #fff;
}

/* Fokus-Indikator fuer Barrierefreiheit (WCAG 2.1 AA) */
:focus-visible {
    outline: 3px solid #0d6efd;
    outline-offset: 2px;
}
