/* /templates/DEIN_THEME/css/auth-pages.css */
/* Dieses Stylesheet gilt für Login, Passwort vergessen und die Wartungsseite. */

/* ==========================================================================
   1. Globales Layout und Hintergrund
   ========================================================================== */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
    background: #E9EEF2 url(../images/backdrop.png) repeat-x;
}

/* ==========================================================================
   2. Die zentrale Box (wird von allen Seiten verwendet)
   ========================================================================== */
.auth-box {
    /* Zentrierung */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    /* Aussehen */
    width: 90%;
    max-width: 600px; /* Standardbreite */
    border-radius: 8px;
    overflow: hidden; /* Verhindert, dass Inhalte über die runden Ecken hinausragen */
}

/* ==========================================================================
   3. Header- und Footer-Styling
   ========================================================================== */
.auth-box-header {
    text-align: center;
    padding: 16px;
}

.auth-box-header img {
    width: 200px; /* Feste Breite für das Logo */
    max-width: 80%; /* Stellt sicher, dass es auf kleinen Bildschirmen nicht überläuft */
}

.auth-box-header h1 {
    margin: 0;
    font-size: 24px;
}

.auth-box-footer {
    font-size: 0.9em;
    padding: 8px 16px;
}

.auth-box-footer a {
    text-decoration: none;
}

.auth-box-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   4. Spezifisches Inhalts-Styling
   ========================================================================== */
/* in /templates/DEIN_THEME/css/auth-pages.css */

/* B. Für reine Nachrichtenseiten (Maintenance) */
.auth-message-content {
    text-align: center;
    padding: 32px 24px; /* Etwas mehr seitlichen Abstand */
    background-color: #ffffff;
}

/* Styling für die Überschrift (über dem Icon) */
.auth-message-content h4 {
    font-size: 1.75em;
    line-height: 1.35;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 24px;
}

.auth-message-content .icon {
    font-size: 3.5em;
    margin-top: 12px;
    margin-bottom: 24px;
    display: block;
}

/* HINZUGEFÜGT: Styling für die Hauptnachricht (unter dem Icon) */
.auth-message-content p {
    font-size: 1.15em;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
}

.auth-message-content .back-link a {
    display: inline-block;
    margin-top: 24px; /* Mehr Abstand zum Text darüber */
    text-decoration: none;
}
