/* style/registration-guide-forgot-password-recovery.css */
.page-registration-guide-forgot-password-recovery {
  font-family: 'Arial', sans-serif;
  color: #1A2E44;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-registration-guide-forgot-password-recovery__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Dark blue to slightly lighter blue for depth */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-registration-guide-forgot-password-recovery__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-registration-guide-forgot-password-recovery__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-registration-guide-forgot-password-recovery__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold */
  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-registration-guide-forgot-password-recovery__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-registration-guide-forgot-password-recovery__cta-button--secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-registration-guide-forgot-password-recovery__cta-button--secondary:hover {
  background-color: #0d1a29;
  color: #ffffff;
  border-color: #ffffff;
}

.page-registration-guide-forgot-password-recovery__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-registration-guide-forgot-password-recovery__section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-registration-guide-forgot-password-recovery__sub-section-title {
  font-size: 1.8em;
  color: #1A2E44;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-registration-guide-forgot-password-recovery__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-guide-forgot-password-recovery__step-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-registration-guide-forgot-password-recovery__step-item:hover {
  transform: translateY(-5px);
}

.page-registration-guide-forgot-password-recovery__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-registration-guide-forgot-password-recovery__step-title {
  font-size: 1.4em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-registration-guide-forgot-password-recovery__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-registration-guide-forgot-password-recovery__list li {
  background-color: #f0f4f7;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  color: #1A2E44;
  font-size: 1.05em;
}

.page-registration-guide-forgot-password-recovery__list li strong {
  color: #1A2E44;
}

.page-registration-guide-forgot-password-recovery__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-guide-forgot-password-recovery__card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #1A2E44;
}

.page-registration-guide-forgot-password-recovery__card-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-registration-guide-forgot-password-recovery__list--security {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.page-registration-guide-forgot-password-recovery__list--security li {
  background-color: #f0f4f7;
  border-radius: 10px;
  padding: 25px;
  border-left: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.page-registration-guide-forgot-password-recovery__list--security .page-registration-guide-forgot-password-recovery__list-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-registration-guide-forgot-password-recovery__list--security li h3 {
  font-size: 1.3em;
  color: #1A2E44;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-registration-guide-forgot-password-recovery__list--security li p {
  font-size: 1em;
  color: #333;
}

@media (min-width: 768px) {
  .page-registration-guide-forgot-password-recovery__list--security {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-registration-guide-forgot-password-recovery__hero-title {
    font-size: 2.5em;
  }

  .page-registration-guide-forgot-password-recovery__section-title {
    font-size: 2em;
  }

  .page-registration-guide-forgot-password-recovery__step-item,
  .page-registration-guide-forgot-password-recovery__card {
    padding: 20px;
  }

  .page-registration-guide-forgot-password-recovery__step-title {
    font-size: 1.2em;
  }

  .page-registration-guide-forgot-password-recovery__list li {
    font-size: 0.95em;
  }
}

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

  .page-registration-guide-forgot-password-recovery__hero-subtitle {
    font-size: 1em;
  }

  .page-registration-guide-forgot-password-recovery__section-title {
    font-size: 1.8em;
  }

  .page-registration-guide-forgot-password-recovery__sub-section-title {
    font-size: 1.5em;
  }

  .page-registration-guide-forgot-password-recovery__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}