body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Stellt sicher, dass der Inhalt ausreichend Platz hat */
    background-color: #f0f0f0;
}

#form-container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    height: auto; /* Passt sich an den Inhalt an */
}
