body {
    font-family: Arial, sans-serif;
    background-color: #f9f6f2;
    color: #5a2d2f;
    text-align: center;
    margin: 0;
    padding: 0;
}
.container {
    width: 40%;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
label {
    font-weight: bold;
    margin-top: 10px;
}
input, select, textarea {
    width: 80%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
textarea {
    resize: vertical;
    height: 100px;
}
button {
    background-color: #a22d2f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 1rem;
}
button:hover {
    background-color: #822425;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    .container {
        width: 90%;
        margin: 20px auto;
        padding: 15px;
    }
    h1 {
        font-size: 1.5rem;
    }
    input, select, textarea, button {
        width: 100%;
        font-size: 1rem;
    }
    label {
        font-size: 1rem;
    }
}