body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; /* Entfernt den Standardabstand */
}
  
.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 340px; /* Setzt eine feste Breite */
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
}
  
h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px; /* Größere Schriftgröße für Überschrift */
}
  
label {
    display: block;
    margin-bottom: 8px;
}
  
input {
    width: 100%;
    padding: 10px; /* Mehr Padding für bessere Benutzerfreundlichkeit */
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Berücksichtigt das Padding in der Breite */
}
  
button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
  
button:hover {
    background-color: #45a049;
}
  
p {
    text-align: center; /* Zentriert den Text */
    margin-top: 0; /* Entfernt oberen Abstand */
}
  