.page-registration-login-forgot-password {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #0A2463; /* Main brand color for background */
}

.page-registration-login-forgot-password__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-registration-login-forgot-password__section-spacing {
  padding: 60px 0;
}

.page-registration-login-forgot-password__bg-dark {
  background-color: #081D4C; /* Slightly darker variant for contrast */
}

.page-registration-login-forgot-password__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #081D4C 100%);
  color: #F8F8F8;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-registration-login-forgot-password__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: #E3B505;
  opacity: 0.1;
  border-radius: 50%;
  animation: page-registration-login-forgot-password__float 6s ease-in-out infinite alternate;
}

.page-registration-login-forgot-password__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: #E3B505;
  opacity: 0.15;
  border-radius: 50%;
  animation: page-registration-login-forgot-password__float 8s ease-in-out infinite alternate-reverse;
}

@keyframes page-registration-login-forgot-password__float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

.page-registration-login-forgot-password__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-login-forgot-password__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-login-forgot-password__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Accent color for CTA */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-registration-login-forgot-password__cta-button:hover {
  background-color: #F5DB9C; /* Lighter accent on hover */
  transform: translateY(-3px);
}

.page-registration-login-forgot-password__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E3B505;
  color: #E3B505;
  margin-left: 20px;
}

.page-registration-login-forgot-password__cta-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

.page-registration-login-forgot-password__section-title {
  font-size: 2.5em;
  color: #E3B505;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-registration-login-forgot-password__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

.page-registration-login-forgot-password__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-registration-login-forgot-password__text-block a {
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
}

.page-registration-login-forgot-password__text-block a:hover {
  text-decoration: underline;
}

.page-registration-login-forgot-password__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-registration-login-forgot-password__list li {
  background-color: #081D4C;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
}

.page-registration-login-forgot-password__list li::before {
  content: '✔️';
  color: #E3B505;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-registration-login-forgot-password__list--bullet li::before {
  content: '•';
  font-size: 1.5em;
  line-height: 1;
}

.page-registration-login-forgot-password__list-item-title {
  color: #E3B505;
  font-size: 1.15em;
  margin-bottom: 5px;
}

.page-registration-login-forgot-password__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-registration-login-forgot-password__step-card {
  background-color: #081D4C;
  border: 1px solid #1A3A77;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-login-forgot-password__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-registration-login-forgot-password__step-title {
  color: #E3B505;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-registration-login-forgot-password__step-description {
  font-size: 1.05em;
  color: #CCC;
}

.page-registration-login-forgot-password__note {
  font-style: italic;
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #F5DB9C;
}

.page-registration-login-forgot-password__accordion-item {
  background-color: #0A2463;
  border: 1px solid #1A3A77;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-registration-login-forgot-password__accordion-header {
  background-color: #1A3A77;
  color: #E3B505;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-registration-login-forgot-password__accordion-header::after {
  content: '\002B'; /* Plus sign */
  font-size: 1.5em;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.page-registration-login-forgot-password__accordion-header.active::after {
  content: '\2212'; /* Minus sign */
  transform: translateY(-50%) rotate(180deg);
}

.page-registration-login-forgot-password__accordion-header:hover {
  background-color: #2A4B8E;
}

.page-registration-login-forgot-password__accordion-content {
  padding: 0 25px;
  background-color: #0A2463;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-registration-login-forgot-password__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #F8F8F8;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-registration-login-forgot-password__hero-title {
    font-size: 2.5em;
  }

  .page-registration-login-forgot-password__hero-subtitle {
    font-size: 1.1em;
  }

  .page-registration-login-forgot-password__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-registration-login-forgot-password__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-registration-login-forgot-password__section-title {
    font-size: 2em;
  }

  .page-registration-login-forgot-password__step-title {
    font-size: 1.5em;
  }

  .page-registration-login-forgot-password__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-registration-login-forgot-password__hero-title {
    font-size: 2em;
  }

  .page-registration-login-forgot-password__hero-subtitle {
    font-size: 1em;
  }

  .page-registration-login-forgot-password__cta-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-registration-login-forgot-password__cta-button--secondary {
    margin-top: 0;
  }

  .page-registration-login-forgot-password__section-title {
    font-size: 1.8em;
  }

  .page-registration-login-forgot-password__step-card {
    padding: 20px;
  }

  .page-registration-login-forgot-password__step-title {
    font-size: 1.3em;
  }
}