/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

/* Container fürs Formular */
.container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Überschrift */
h1 {
    text-align: center;
    color: #1c5d85;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/* Formularstruktur */
form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Eingabe-Labels */
form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 0.95rem;
    color: #333;
}

/* Roter Stern */
.stern {
    color: red;
    margin-right: 4px;
}

/* Labeltext vor Input */
.label-inline {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

/* Eingabefelder */
input, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f0f0f0;
}

/* Textareas etwas größer */
textarea {
    resize: vertical;
    min-height: 80px;
}

/* Infotext unter dem Formular */
.info {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Button */
button {
    padding: 0.75rem;
    background-color: #1c5d85;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: #144766;
}

input, textarea {
    background-color: #c4c4c4;
}

