.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

/* wichtig für Pending-Mail-Logik */
.hidden {
  display: none;
}

.email-box {
  background: #f3f3f3;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}





/* Titel zentrieren */
#resetTitle {
  text-align: center;
  margin-bottom: 20px;
}

/* Formular zentrieren & begrenzen */
#resetForm {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;   /* horizontal zentrieren */
  padding: 10px;
}

/* Labels sauber darstellen */
#resetForm label {
  display: block;
  margin-bottom: 6px;
  text-align: left;   /* Text links innerhalb des zentrierten Formulars */
}

/* Inputs & Button volle Breite im Formular */
#resetForm input,
#resetForm button {
  width: 100%;
  box-sizing: border-box;
}


#resetForm input {
  margin-bottom: 12px; /* Abstand nach jedem Input */
}

#resetForm button {
  margin-top: 10px; /* Abstand nach dem letzten Input */
}








.auth-page {
  padding: 40px;
  max-width: 400px;
  margin: 0 auto;
}

.auth-title {
  text-align: center;
  margin-bottom: 20px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-form label {
  display: block;
}

.auth-form input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.auth-form button {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #1976d2;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.auth-form button:hover {
  background: #1565c0;
}