/* Allgemeine Stile */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f3f4f6; /* Helles Grau für den Hintergrund */
    color: #333; /* Dunklerer Text für bessere Lesbarkeit */
}

h1 {
    color: #2c3e50; /* Dunkles Blau */
    text-align: center;
    margin-top: 20px;
    font-size: 2.5em;
}

/* Formular-Styling */
form {
    max-width: 600px;
    margin: 30px auto; /* Zentrieren des Formulars */
    padding: 20px;
    background-color: #ffffff; /* Weißer Hintergrund */
    border-radius: 8px; /* Runde Ecken */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #34495e; /* Dunkleres Blau für Labels */
}

input, textarea, button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Runde Eingabefelder */
    font-size: 1em;
}

textarea {
    resize: vertical; /* Nur vertikal skalierbar */
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4caf50; /* Fokusfarbe */

}

button {
    background-color: #4caf50; /* Blau für den Button */
    color: white;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4caf50; /* Dunkleres Blau beim Hover */
}

/* Seitenüberschrift */
h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #4caf50;
    margin: 10px auto;
    border-radius: 3px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    form {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }
}
