/* Allgemeine Stile für den Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Stile für das Formular */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

/* Stile für die Formularfelder und Labels */
label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
}

input, select, textarea, button {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

/* Stile für den Absendebutton */
button {
    background-color: #568098;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #466080;
}