/* ==========================================================================
   Auth-Bereich (Login, Register, Passwort, 2FA, Bestätigungen)
   Eigenes, schlankes Auth-Layout ohne Navigation — siehe _AuthLayout.cshtml.
   Portiert aus AUXWEG GastroStox (auxweggastrostoxlaravel resources/css/auth.css),
   wird NACH bootstrap.css eingebunden (Kaskaden-Reihenfolge).
   ========================================================================== */

body { font-family: 'Source Sans Pro', sans-serif; }

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 1rem;
}
.auth-card {
    width: 100%;
    max-width: 420px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.auth-card__brand {
    text-align: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}
.auth-card__brand img {
    height: 52px;
    width: auto;
    margin-bottom: 0.4rem;
}
.auth-card__brand h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
}
.auth-card__brand small {
    color: #6b7280;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.auth-card__body {
    padding: 1.5rem 2rem 1.75rem;
}
/* Kompaktere Formular-Abstände (schlankere Karte, v.a. bei Registrierung) */
.auth-card__body h2 { font-size: 1.15rem; }
.auth-card__body .form-label {
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.auth-card__body form .mb-3 { margin-bottom: 0.85rem; }
.auth-card__body .form-control { padding-top: 0.45rem; padding-bottom: 0.45rem; }
.auth-card__footer {
    padding: 1rem 2rem;
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Indigo-Branding für Buttons/Links innerhalb der Karte */
.auth-card .btn-primary {
    background-color: #667eea;
    border-color: #667eea;
}
.auth-card .btn-primary:hover,
.auth-card .btn-primary:focus {
    background-color: #5568e0;
    border-color: #5568e0;
}
.auth-card a { color: #667eea; }
.auth-card a.text-muted { color: #6b7280 !important; }
.auth-card a.text-muted:hover { color: #667eea !important; }

/* ASP.NET-Validierung: jquery.validate setzt input-validation-error (nicht is-invalid) */
.auth-card .input-validation-error {
    border-color: #dc3545;
}
.auth-card .input-validation-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.auth-card .validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}
