/* =======================================================
   GLOBAL
======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("https://de-s1-ch1-id876234342.centralnemesis.com/data/assets/cursor_normal.png") 0 0, auto !important;
}

input, textarea, select, button, a {
    cursor: url("https://de-s1-ch1-id876234342.centralnemesis.com/data/assets/cursor_normal.png") 0 0, auto !important;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505; /* Ein extrem tiefes Schwarz/Grau */
    font-family: 'Quattrocento', serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden; /* Verhindert Wackeln/Scrollen auf dem Desktop */
}

/* ---------- STERNE RANDOM ---------- */
.star {
    position: fixed;
    background-color: Gold;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 0 8px Gold; /* Sterne leuchten jetzt minimal */
}

/* =======================================================
   AUTH CARD (MILCHGLAS & NEON-GOLD EFFEKT)
======================================================= */
.auth-card {
    padding: 45px 40px;
    width: 380px;
    text-align: center;
    color: white;
    
    /* Der edle App-Look */
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.1);
}

.auth-card img {
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.2)); /* Logo glüht dezent */
}

.auth-card h2 {
    margin-bottom: 25px;
    font-weight: bold;
    color: Gold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* =======================================================
   INPUT FELDER
======================================================= */
.auth-card input[type="text"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    
    color: Gold;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.auth-card input::placeholder {
    color: #666;
    letter-spacing: 1px;
}

.auth-card input:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: Gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* =======================================================
   CHECKBOX (EINGELOGGT BLEIBEN)
======================================================= */
.remember-ids {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.remember-ids h3 {
    font-size: 13px;
    color: #aaa;
    font-weight: normal;
    transition: color 0.2s;
}

.remember-ids input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 4px;
    background: transparent;
    position: relative;
}

.remember-ids input[type="checkbox"]:checked {
    background: Gold;
    border-color: Gold;
    box-shadow: 0 0 10px Gold;
}

/* Kleiner Haken für die Checkbox */
.remember-ids input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 2px;
    color: black;
    font-size: 14px;
    font-weight: bold;
}

.remember-ids:hover h3 {
    color: Gold;
}

/* =======================================================
   LOGIN BUTTON
======================================================= */
.auth-card button {
    width: 100%; /* Über die volle Breite sieht es moderner aus */
    padding: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    border: none;
    border-radius: 10px;
    
    color: Black;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.auth-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.auth-card button:active {
    transform: translateY(1px);
}

/* =======================================================
   LINKS UNTEN
======================================================= */
.auth-card p {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
}

.auth-card a {
    color: Gold;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
    transition: all 0.2s;
}

.auth-card a:hover {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    text-decoration: none; /* Kein hässlicher Unterstrich mehr, sondern Glow */
}