body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding-top: 50px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 940px;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    flex: 1 1 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.button {
    background-color: #4285f4;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.button:hover {
    background-color: #357ae8;
}

.button:active {
    transform: translateY(1px);
}

.form-card {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-card .card-title {
    width: 100%;
    text-align: center;
}

.form-card form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-field {
    margin-bottom: 24px; /* Mehr vertikaler Abstand */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.form-field label {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 12px; /* Vergrößertes Padding */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
    outline: none;
}

/* Neue CSS-Regeln für die Checkboxen */

.checkbox-group {
    /* Macht die Gruppe genauso breit wie die anderen Eingabefelder und zentriert sie */
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
    padding-top: 5px; /* Kleiner Abstand oben */
}

.checkbox-field {
    /* Flex-Ausrichtung für Checkboxen: horizontal */
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px; /* Weniger Abstand zwischen den Checkboxen */
}

.checkbox-field label {
    margin-bottom: 0;
    margin-left: 10px; /* Abstand zwischen Checkbox und Text */
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    /* Setzt die Checkbox auf eine angemessene Größe und entfernt unnötiges Padding */
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    cursor: pointer;
    /* Entfernt das Material Design Padding, das wir für Textfelder hatten */
    flex: none;
