body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* 100% der Höhe des Viewports */
    margin: 0;
    /* Standard-Margin zurücksetzen */
    background-image: url('background.png');
    /* Korrekte Syntax */
    background-size: cover;
    /* Bild deckt den gesamten Hintergrund ab */
    background-repeat: no-repeat;
    /* Bild wiederholt sich nicht */
    background-position: center;
    /* Bild wird zentriert */
}


.container {
    background: #333;
    /* Dunkler Hintergrund für die Box */
    color: #ddd;
    /* Helle Textfarbe */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Dunklerer Schatten für bessere Sichtbarkeit */
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #eee;
    /* Helle Farbe für die Überschrift */
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ccc;
    /* Helle Farbe für Labels */
}

input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #555;
    /* Dunkler Rand für das Eingabefeld */
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 16px;
    background: #444;
    /* Dunkler Hintergrund für das Eingabefeld */
    color: #ddd;
    /* Helle Textfarbe im Eingabefeld */
}

button {
    background-color: #2575fc;
    /* Helle Farbe für den Button */
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1a5bb8;
    /* Etwas dunklere Farbe für den Hover-Effekt */
}