/* Grundaufbau: vertikale Anordnung */
.login-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem; /* abgeändert: weniger Abstand zwischen Feldern */
}

.form-field label {
  font-size: 0.9rem;
  color: #333;
}

.form-field input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  max-width: 100%;
}

/* Sicherstellen, dass Button den gleichen, etwas kleineren Abstand hat */
.btn-submit {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: silver;
  color: black;
  cursor: pointer;
  align-self: stretch; /* volle Breite wie Felder */
  margin-top: 0.75rem;  /* etwas geringerer Abstand zum Passwort-Feld */
}