/* Übernommen und angepasst von reset-password/signup */
.card-container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.10);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}
h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.25em;
  color: #222;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.email-info {
  text-align: center;
  margin-bottom: 18px;
  font-size: 1.05em;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.form-group {
  margin-bottom: 1.3em;
}
label {
  display: block;
  margin-bottom: 0.4em;
  color: #444;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.7em 1em;
  font-size: 1em;
  border: 1px solid #ced4da;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: #E64C61;
  box-shadow: 0 0 5px rgba(230,76,97,0.15);
  outline: none;
}
#change-password-widget button {
  display: block;
  width: 100%;
  margin: 20px auto;
  padding: 0.9em;
  cursor: pointer;
  transition: background 0.2s;
}
#change-password-widget button:hover {
  background: #C75380;
}
.feedback-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  margin-top: 1.2rem;
  font-size: 1.08em;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.feedback-message.success {
  background: #e6f9ed;
  border-color: #3ac17b;
  color: #217a4a;
}
.feedback-message.error {
  background: #ffeded;
  border-color: #e74c3c;
  color: #b20000;
}
.feedback-message.loading {
  background: #f7fafd;
  border-color: #3498db;
  color: #217dbb;
}
@media (max-width: 500px) {
  .card-container {
    max-width: 98vw;
    padding: 18px 4vw 18px 4vw;
  }
  .form-control, button {
    font-size: 1em;
    padding: 0.8em 0.9em;
    width: 100%;
  }
  h2 {
    font-size: 1.15em;
  }
  .feedback-message {
    font-size: 1em;
    padding: 0.7rem 0.7rem;
  }
}