/* Grundlayout */
body {
  font-family: sans-serif;
  background-color: #f0f4fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Box für das Formular */
.form-container {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Überschrift */
.form-container h2 {
  color: #003366;
  margin-bottom: 25px;
}

/* Formularaufbau */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Beschriftungen */
label {
  text-align: left;
  font-weight: 600;
  color: #003366;
}

/* Eingabefelder */
input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* Button im Stil der Registrierung */
button {
  padding: 10px;
  background-color: #003366;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005599;
}

/* Linkstil */
a {
  margin-top: 15px;
  display: inline-block;
  color: #003366;
  text-decoration: none;
  font-size: 0.95rem;
}

a:hover {
  text-decoration: underline;
}