.page-register-login-forgot-password-recovery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-register-login-forgot-password-recovery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-forgot-password-recovery__hero {
  background-color: #003366; /* Primary color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register-login-forgot-password-recovery__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-register-login-forgot-password-recovery__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-register-login-forgot-password-recovery__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-register-login-forgot-password-recovery__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-forgot-password-recovery__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-register-login-forgot-password-recovery__hero-button {
  background-color: #FFCC00; /* Secondary color */
  color: #003366; /* Primary color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-register-login-forgot-password-recovery__hero-button:hover {
  background-color: #e6b800; /* Slightly darker secondary color */
  transform: translateY(-2px);
}

.page-register-login-forgot-password-recovery__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-register-login-forgot-password-recovery__section--alt-bg {
  background-color: #f0f5fa; /* Lighter shade of primary color for background */
}

.page-register-login-forgot-password-recovery__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-register-login-forgot-password-recovery__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Secondary color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-register-login-forgot-password-recovery__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #4d4d4d;
}

.page-register-login-forgot-password-recovery__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-register-login-forgot-password-recovery__sub-list {
  list-style: circle;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}

.page-register-login-forgot-password-recovery__sub-list li {
  margin-bottom: 8px;
}

.page-register-login-forgot-password-recovery__steps-grid, 
.page-register-login-forgot-password-recovery__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-register-login-forgot-password-recovery__step-item, 
.page-register-login-forgot-password-recovery__faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-register-login-forgot-password-recovery__step-item:hover, 
.page-register-login-forgot-password-recovery__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-register-login-forgot-password-recovery__step-title, 
.page-register-login-forgot-password-recovery__faq-title {
  font-size: 1.8em;
  color: #003366; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register-login-forgot-password-recovery__step-item p, 
.page-register-login-forgot-password-recovery__faq-item p {
  margin-bottom: 15px;
  color: #555;
}

.page-register-login-forgot-password-recovery__step-button, 
.page-register-login-forgot-password-recovery__contact-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #FFCC00; /* Secondary color */
  color: #003366; /* Primary color for text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.page-register-login-forgot-password-recovery__step-button.btn--small {
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-register-login-forgot-password-recovery__step-button:hover, 
.page-register-login-forgot-password-recovery__contact-button:hover {
  background-color: #e6b800;
  transform: translateY(-1px);
}

.page-register-login-forgot-password-recovery__step-image, 
.page-register-login-forgot-password-recovery__faq-image, 
.page-register-login-forgot-password-recovery__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-register-login-forgot-password-recovery__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-register-login-forgot-password-recovery__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-register-login-forgot-password-recovery__contact-list li strong {
  color: #003366;
}

.page-register-login-forgot-password-recovery__section--cta-banner {
  background-color: #003366; /* Primary color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-register-login-forgot-password-recovery__cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-register-login-forgot-password-recovery__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-register-login-forgot-password-recovery__cta-title {
  font-size: 2.8em;
  color: #FFCC00; /* Secondary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-forgot-password-recovery__cta-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-register-login-forgot-password-recovery__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login-forgot-password-recovery__cta-button {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-register-login-forgot-password-recovery__cta-button.btn--primary {
  background-color: #FFCC00; /* Secondary color */
  color: #003366; /* Primary color for text */
}

.page-register-login-forgot-password-recovery__cta-button.btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-register-login-forgot-password-recovery__cta-button.btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Secondary color */
  border: 2px solid #FFCC00;
}

.page-register-login-forgot-password-recovery__cta-button.btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366; /* Primary color */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login-forgot-password-recovery__hero {
    padding: 60px 0;
  }

  .page-register-login-forgot-password-recovery__hero-title {
    font-size: 2.5em;
  }

  .page-register-login-forgot-password-recovery__hero-description {
    font-size: 1em;
  }

  .page-register-login-forgot-password-recovery__section {
    padding: 40px 0;
  }

  .page-register-login-forgot-password-recovery__section-title {
    font-size: 2em;
  }

  .page-register-login-forgot-password-recovery__step-title, 
  .page-register-login-forgot-password-recovery__faq-title {
    font-size: 1.5em;
  }

  .page-register-login-forgot-password-recovery__steps-grid, 
  .page-register-login-forgot-password-recovery__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-register-login-forgot-password-recovery__cta-title {
    font-size: 2.2em;
  }

  .page-register-login-forgot-password-recovery__cta-description {
    font-size: 1em;
  }

  .page-register-login-forgot-password-recovery__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-register-login-forgot-password-recovery__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-register-login-forgot-password-recovery__section-title {
    font-size: 1.8em;
  }

  .page-register-login-forgot-password-recovery__cta-title {
    font-size: 1.8em;
  }

  .page-register-login-forgot-password-recovery__hero-button, 
  .page-register-login-forgot-password-recovery__step-button, 
  .page-register-login-forgot-password-recovery__contact-button, 
  .page-register-login-forgot-password-recovery__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}