body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Dunkler Hintergrund */
    color: #ffffff; /* Helle Schriftfarbe */
}
.logo {
	margin-left:-155px;
    width: 536px; /* Breite des Logos anpassen */
    height: auto; /* Höhe automatisch anpassen */
    display: block; /* Block-Element */
    justify-content: center; /* Zentriert die Kinder horizontal */
    align-items: center; /* Zentriert die Kinder vertikal */
}

.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: #4CAF50; /* Primäre Schaltfläche */
    color: white;
    border: none;
    border-radius: 4px; /* Abgerundete Ecken */
}

input[type="submit"]:hover {
    background-color: #45a049; /* Hover-Effekt für Schaltflächen */
}

.error {
    color: red; /* Fehlernachrichten in Rot */
}


/* 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: 480px) {
    .container {
        width: 600px;
        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"], input[type="submit"] {
        font-size: 60px; 
        padding: 10px; /* Angemessenes Padding für kleine Bildschirme */
    }
}
