/* Basis-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Vollflächiges Video als Hintergrund */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Halbtransparenter, verschwommener Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(18, 20, 23, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* Body mit Flexbox zentriert */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #e4e6eb;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: transparent;
    overflow: hidden;
}

/* Container mit Leuchten und minimal größer */
.login-container {
    background-color: rgba(30, 33, 41, 0.85);
    padding: 3rem 3.5rem;  /* mehr Padding */
    border-radius: 1.5rem;
    box-shadow: 0 0 25px #4f88ffbb; /* stärkeres Leuchten */
    width: 100%;
    max-width: 440px; /* minimal breiter */
    color: #fff;
    z-index: 1;
    position: relative;
    text-align: center;
}

/* Überschrift mit mehr Abstand */
.login-container h2 {
    margin-bottom: 2.5rem; /* mehr Abstand */
    font-weight: 700;
    font-size: 1.8rem; /* minimal größer */
}

/* Eingabefelder mit mehr Padding und Abstand */
.form-control {
    background-color: #2e323a;
    border: none;
    color: #ffffff;
    padding: 1rem 1.2rem; /* mehr Padding */
    border-radius: 50px;
    width: 100%;
    margin-bottom: 1.6rem; /* größerer Abstand */
    font-size: 1.1rem; /* minimal größer */
    outline: none;
    transition: background-color 0.3s ease;
}

/* Placeholder-Farbe */
.form-control::placeholder {
    color: #ccc;
}

/* Fokuszustand */
.form-control:focus {
    background-color: #3a3f4a;
    color: #fff;
    box-shadow: 0 0 0 3px #4f88ffaa;
}

/* Button mit mehr Padding und größer */
.btn-login {
    background-color: #4f88ff;
    border: none;
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem; /* minimal größer */
}

.btn-login:hover {
    background-color: #2171ff;
    box-shadow: 0 0 15px #4f88ffcc;
}

/* Links unter dem Formular mit mehr Abstand */
.links {
    margin-top: 2rem; /* mehr Abstand */
    display: flex;
    justify-content: space-between;
    font-size: 1rem; /* minimal größer */
}

/* Link-Stil */
.links a {
    color: #a0c1ff;
    text-decoration: none;
    transition: color 0.2s ease;
    user-select: none;
}

.links a:hover {
    color: white;
    text-decoration: none;
}
