/* Allgemeiner Formularstil */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

/* Beschriftungen immer linksbündig */
form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: normal;      /* nicht fett */
  text-align: left !important;
  font-size: 0.95rem;       /* etwas kleiner */
}

/* Eingabefelder */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="number"],
form input[type="date"],
form textarea,
form select {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Textbereich */
form textarea {
  resize: vertical;
}

/* Checkboxen */
form input[type="checkbox"] {
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Schaltflächen */
form button {
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
}

form button:hover {
  background: #0056b3;
}

/* Abschnittsüberschriften */
form p {
  font-size: 1rem;         /* statt z. B. 1.1rem */
  font-weight: normal;     /* ebenfalls nicht fett */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

