body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #ffffff; /* Helle Schriftfarbe */
	
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* .logo {
	margin-left:-12px;
    width: 536px;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
} */

.logo {
    margin-left: -12px;
    width: 729px;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
    margin-top: -5px;
    margin-left: 19px;
    margin-bottom: -34px;
}

.container {
    width: 300px;
    margin: 0 auto;
    padding-top: 100px;
}

input[type="text"], input[type="password"] {
    width: 92.3%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444; /* Dunklere Rahmenfarbe */
    border-radius: 4px;
    background-color: #333; /* Dunkler Hintergrund für Eingabefelder */
    color: #ffffff; /* Weiße Schriftfarbe in Eingabefeldern */
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #0c3669; /* Primäre Schaltfläche */
    color: white;
    border: none;
    border-radius: 4px; /* Abgerundete Ecken */
}

input[type="submit"]:hover {
    background-color: #48346f; /* Hover-Effekt für Schaltflächen */
}

.error {
    color: red; /* Fehlernachrichten in Rot */
}

/* Neues Login Style */

/* Schrift-Effekt */
@font-face {
    font-family: 'Flame-PVmE';
    src: url('../fonts/Flame-PVmE.ttf') format('truetype');
}
.LoginTitel {
    font-family: 'Flame-PVmE', sans-serif;
    font-size: 75px;
    background: linear-gradient(0deg, #fcff81 8.57%, #ffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 2px 17px #ff0000, 0 0 10px #ffbc00;
    margin: 20px 0;
    text-align: center;
    animation: flameFlicker 2s infinite linear;
}
@keyframes flameFlicker {
    0%   { text-shadow: 4px 2px 17px #ff0000, 0 0 10px #ffbc00; }
    15%  { text-shadow: 6px 0px 20px #ff3300, 0 0 14px #ffee00; }
    30%  { text-shadow: 3px -2px 15px #ff2200, 0 0 12px #ffcc00; }
    45%  { text-shadow: 5px -1px 22px #ff0000, 0 0 16px #ffb300; }
    60%  { text-shadow: 4px 2px 18px #ff3300, 0 0 14px #ffdd00; }
    75%  { text-shadow: 2px -3px 19px #ff2200, 0 0 13px #ffcc00; }
    100% { text-shadow: 4px 2px 17px #ff0000, 0 0 10px #ffbc00; }
}

/* Bild-Button (Hover-Wechsel) */
.image-button {
    position: relative;
    width: 735px;
    height: 393px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    outline: none; /* verhindert Fokusrahmen */
}
.image-button img {
    position: absolute;
    top: 0;
    left: 0;
    width: 735px;
    height: 393px;
    display: block;
}
.image-button .hover-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-button:hover .hover-img {
    opacity: 1;
}

/* Logo optional kleiner machen für Mobile */
@media screen and (max-width: 800px) {
    .image-button,
    .image-button img {
        width: 100%;
        height: auto;
    }
	
	/* Bild-Button (Hover-Wechsel) */
.image-button {
    position: relative;
    width: 735px;
    height: 393px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    outline: none; /* verhindert Fokusrahmen */
}
.image-button img {
    position: absolute;
    top: -110px;
    left: 0;
    width: 735px;
    height: 393px;
    display: block;
}
.image-button .hover-img {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-button:hover .hover-img {
    opacity: 1;
}

/* Carolina Reaper */
	.LoginTitel {
    font-family: 'Flame-PVmE', sans-serif;
    font-size: 60px;
    background: linear-gradient(0deg, #fcff81 8.57%, #ffff00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 2px 17px #ff0000, 0 0 10px #ffbc00;
    margin: 20px 0;
	margin-top:-100px;
    text-align: center;
    animation: flameFlicker 2s infinite linear;
}
	
	
}


/* Scanner-Balken Container */
.scan-sweep {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0; /* NEU: unsichtbar, bis animiert wird */
}

/* Sichtbarer Lichtbalken */
.scan-sweep::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px; /* NEU: nur 3mm/Pixel dick */
  background: linear-gradient(
    to top,
    rgba(0, 255, 0, 0) 0%,
    rgba(0, 255, 128, 0.8) 50%,
    rgba(0, 255, 0, 0) 100%
  );
  filter: blur(4px) drop-shadow(0 0 4px lime);
}

/* Keyframes: hoch + Pause + runter */
@keyframes sweepUpDown {
  0%   { transform: translateY(100%); opacity: 1; }
  40%  { transform: translateY(-100%); opacity: 1; }
  60%  { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* Klasse zum Starten der Animation */
.sweep-animate {
  animation: sweepUpDown var(--sweep-time, 4s) ease-in-out forwards;
  opacity: 1; /* NEU: blendet ein, wenn die Animation startet */
}

/* Neues Login Style ENDE */

#LoginContainer {
	margin-top:-190px;
}


/* MOBIL */

/* Mobile Optimierung */
@media (max-width: 1000px) {
    body {
        font-size: 60px; 
        padding: 10px; /* Innenabstand hinzufügen */
    }

    .container {
        width: 800px;
        padding-top: 50px; /* Weniger Abstand oben für kleinere Bildschirme */
    }

    .logo {
        margin: 0 auto; /* Zentriere das Logo */
        width: 80%; /* Passe die Breite des Logos an kleinere Bildschirme an */
        height: auto; /* Behalte das Seitenverhältnis bei */
    }

    input[type="text"], input[type="password"] {
        width: 100%; /* Eingabefelder nehmen die gesamte Breite ein */
        font-size: 60px; 
    }

    input[type="submit"] {
        font-size: 60px; 
        padding: 12px; /* Mehr Padding für einfacheres Tippen */
    }
	
	/* Allgemeine Stile für Eingabefelder */
input[type="text"], input[type="password"] {
    font-size: 60px; /* Schriftgröße für normale Eingabe */
}

/* Stile für automatisch ausgefüllte Eingabefelder */
input:-webkit-autofill {
    font-size: 60px; /* Schriftgröße für Autofill-Werte */
    color: #000 !important; background-color:#050 !important; /* Schriftfarbe anpassen */
    background-color: #000 !important; /* Hintergrundfarbe anpassen */
    border: 1px solid #444; /* Rahmenfarbe beibehalten */
    -webkit-text-fill-color: #000 !important; background-color:#050 !important; /* Textfarbe innerhalb von Autofill erzwingen */
}

/* Optional: Platzhalter-Stile anpassen */
input::placeholder {
    font-size: 60px; /* Schriftgröße für Platzhaltertext */
    color: #000 !important; background-color:#050 !important; /* Farbe für Platzhaltertext */
}

	
	
}

/* Sehr kleine Geräte (z. B. Smartphones im Hochformat) */
@media (max-width: 800px) {
    .container {
        width: 700px;
        padding-top: 30px; /* Noch weniger Abstand oben */
        font-size: 60px; 
    }


    .logo {
        width: 70%; /* Reduziere die Breite des Logos weiter */
    }

    input[type="text"], input[type="password"] {
        font-size: 30px; 
        padding: 10px; /* Angemessenes Padding für kleine Bildschirme */
		height:15px;
    }
	
	input[type="submit"] {
    width: 40%;
    padding: 10px;
    background-color: #0c3669;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 25px;
}
	
	.InputField {font-size:25px;}
	
	input::placeholder {
    color: #ffb300;
    font-size: 25px;
    font-style: italic;
    opacity: 1; 
}
.captcha-reload {display:inline-block;margin-top:4px;background:#222;color:#0f0;
                 padding:3px 7px;font-size:25px !important;border:1px solid #0f0;text-decoration:none;}

.StayIn {font-size:22px;}

}

 .datenschutz-link {
    color: #ffbf00;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .datenschutz-link:hover {
    color: #ffffff;
  }