/* Grundlegendes Design & Dark Mode */
/* Grundlegendes Design */
body {
    background-color: #0b0e14;
    /* Sehr dunkles Grau/Schwarz */
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* Lichtquelle 1: Oben Links (Dunkelblau) */
body::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
    animation: float 15s infinite alternate ease-in-out;
}

/* Lichtquelle 2: Unten Rechts (Hellblau) */
body::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    z-index: -1;
    animation: float 20s infinite alternate-reverse ease-in-out;
}

/* Lichtquelle 3: Mitte (Zusätzlicher Glow hinter dem Container) */
.bg-glow-center {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Animation für das sanfte Schweben der Lichter */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Haupt-Container */
.container {
    text-align: center;
    background: #161b22;
    /* Dunkelgrau */
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #30363d;
    max-width: 450px;
    width: 90%;
}

h1 {
    color: #58a6ff;
    /* Hellblau */
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.main p {
    color: #8b949e;
    margin-bottom: 2rem;
}

/* Button-Bereich */
.login_register {
    margin-top: 2rem;
}

.login_register p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #c9d1d9;
}

/* Buttons mit Blau-Verläufen */
button {
    width: 100%;
    padding: 14px;
    /* Etwas mehr Platz für die Schrift */
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    /* Schrift etwas größer */
    font-weight: 800;
    /* Extra fett für bessere Lesbarkeit */
    cursor: pointer;
    transition: all 0.3s ease;
    /* Weicher Übergang für alle Effekte */
    color: #ffffff;
    /* Strahlend weiße Schrift */
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    /* Leichter Schatten hinter der Schrift */
    text-transform: uppercase;
    /* Sieht moderner aus */
    letter-spacing: 1px;
}

/* Login Button (Dunkleres Blau zu Blau) */
.btn-login {
    background: linear-gradient(135deg, #0055aa 0%, #0088ff 100%);
    box-shadow: 0 4px 15px rgba(0, 85, 170, 0.4);
}

/* Register Button (Blau zu Hellblau) */
.btn-register {
    background: linear-gradient(135deg, #0077ee 0%, #00ccff 100%);
    box-shadow: 0 4px 15px rgba(0, 119, 238, 0.4);
}

/* HOVER EFFEKT - DAS AUFLEUCHTEN */
button:hover {
    transform: translateY(-3px);
    /* Button hebt sich ab */
    filter: brightness(1.2);
    /* Macht den gesamten Button heller */
}

.btn-login:hover {
    /* Starkes blaues Leuchten */
    box-shadow: 0 0 25px rgba(0, 136, 255, 0.8);
}

.btn-register:hover {
    /* Starkes hellblaues Leuchten */
    box-shadow: 0 0 25px rgba(0, 204, 255, 0.8);
}

button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
