/* Section Background */
.forgot-password-section {
  background-color: #1c2d59;
  padding: 60px 20px;
  font-family: Georgia, serif;
  border-bottom: 2px solid #fff;
  color: #fff;
}

/* Centered Card with Light Background */
.forgot-password-section .card {
  background-color: #fff;
  color: #000;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
}

/* Custom Heading */
.custom-heading {
  font-size: 32px;
  color: #1c2d59;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

/* Custom Paragraph */
.custom-paragraph {
  font-size: 20px;
  color: black;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}

/* Form Inputs */
.forgot-password-section .form-control {
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
}

/* Dignity Button Style */
.dignity-button {
  background-color: #1c2d59;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.dignity-button:hover {
  background-color: #f27b21;
  color: #fff;
}

/* Step wrapper spacing */
.forgot-password-section .step-wrapper {
  display: none;
}

.forgot-password-section .step-wrapper.active {
  display: block;
}

/* Success / Status Message */
#resetStatus {
  margin-top: 20px;
  font-weight: bold;
  color: green;
  text-align: center;
}
