/* ============================================================
   Login-Page — eigene Optik mit GTA-V-Stil
   ============================================================ */

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(ellipse at top, rgba(225, 6, 0, 0.12), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(225, 6, 0, 0.06), transparent 70%),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Dezente Linien im Hintergrund (Los-Santos-Vibe) */
.login-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.login-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 1;
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.login-header p {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.login-card {
    padding: 32px;
    backdrop-filter: blur(12px);
    background: rgba(26, 26, 26, 0.85);
}

.login-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.login-footer strong {
    color: var(--li-red-bright);
    font-weight: 700;
}
