/* ============================================================================
   LOGIN PAGE STYLING (VitriniFX)
   ============================================================================ */

.login-page {
    /* Nimmt den gesamten Platz im page-content ein */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    width: 100%;
    /* Subtiler Glow im Hintergrund, passend zum Tech-Thema */
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    padding: 20px;
}

.login-box {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid #333;
    border-radius: 8px;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    /* Leichter Neon-Schatten */
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header h2 {
    color: #00d4ff; /* Dein Accent-Blau */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.login-header p {
    color: #888;
    font-size: 0.9rem;
}

/* Formular-Felder */
.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    padding: 14px 15px;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Wenn man in das Feld klickt (Fokus) */
.input-group input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
    background: rgba(0, 0, 0, 0.8);
}

/* Footer-Bereich (Wechsel zu Registrierung) */
.login-footer {
    margin-top: 35px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px;
}

.login-footer p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.switch-mode-btn {
    background: none;
    border: none;
    color: #00d4ff;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
}

.switch-mode-btn:hover {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    color: #fff;
}
