/* === Passwort zurücksetzen (password_change.php) === */

.section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  min-height: 80vh;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #222;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.text-center {
  text-align: center;
}

h2 {
  margin-bottom: 30px;
  color: #3eb489; /* Akzentfarbe */
  font-size: 2rem;
}

label {
  display: block;
  text-align: left;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ddd;
}

input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1px solid #555;
  border-radius: 6px;
  background-color: #2a2a2a;
  color: #f0f0f0;
  font-size: 1rem;
}

input[type="email"]:focus {
  border-color: #3eb489;
  outline: none;
  background-color: #2f2f2f;
}

/* CTA Button */
button[type="submit"] {
  width: 100%;
  background-color: #3eb489;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #35a47a;
}

/* Feedback-Meldungen */
.feedback-message {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.2rem;
  border-radius: 6px;
  padding: 0.8rem;
  font-size: 0.95rem;
}

.feedback-message.success {
  background-color: #2ecc71;
  color: #fff;
}

.feedback-message.error {
  background-color: #e74c3c;
  color: #fff;
}

a {
  color: #fcd34d;
  text-decoration: underline;
  font-size: 0.9rem;
}

a:hover {
  color: #ffe97f;
}

.modal-success {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-success-content {
  background-color: #1f1f1f;
  padding: 2rem 3rem;
  border: 2px solid #3eb489;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(62, 180, 137, 0.5);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
