/* style/registration-guide-qh88-forgot-password.css */
.page-registration-guide-qh88-forgot-password {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Main text color */
  line-height: 1.6;
}

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

.page-registration-guide-qh88-forgot-password__hero-section {
  background: linear-gradient(135deg, #0A2342, #1a3d6e); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-registration-guide-qh88-forgot-password__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-registration-guide-qh88-forgot-password__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-registration-guide-qh88-forgot-password__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.page-registration-guide-qh88-forgot-password__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-registration-guide-qh88-forgot-password__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  border-color: #e6c200;
}

.page-registration-guide-qh88-forgot-password__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-registration-guide-qh88-forgot-password__btn--secondary:hover {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

.page-registration-guide-qh88-forgot-password__content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-registration-guide-qh88-forgot-password__section-title {
  font-size: 2em;
  color: #0A2342;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

.page-registration-guide-qh88-forgot-password__introduction-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.page-registration-guide-qh88-forgot-password__text-block {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-qh88-forgot-password__text-block p {
  margin-bottom: 15px;
  color: #333;
}

.page-registration-guide-qh88-forgot-password__highlight {
  color: #0A2342;
  font-weight: bold;
}

.page-registration-guide-qh88-forgot-password__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333;
}

.page-registration-guide-qh88-forgot-password__list li {
  margin-bottom: 10px;
}

.page-registration-guide-qh88-forgot-password__list--checklist {
  list-style: none;
  margin-left: 0;
}

.page-registration-guide-qh88-forgot-password__list--checklist li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-registration-guide-qh88-forgot-password__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-registration-guide-qh88-forgot-password__step {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-qh88-forgot-password__step-icon {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  background-color: #0A2342;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.page-registration-guide-qh88-forgot-password__step-content h3 {
  font-size: 1.5em;
  color: #0A2342;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-registration-guide-qh88-forgot-password__step-content p {
  color: #333;
  margin-bottom: 15px;
}

.page-registration-guide-qh88-forgot-password__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-qh88-forgot-password__faq-section {
  margin-top: 40px;
}

.page-registration-guide-qh88-forgot-password__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-registration-guide-qh88-forgot-password__faq-question {
  font-size: 1.2em;
  color: #0A2342;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-registration-guide-qh88-forgot-password__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-registration-guide-qh88-forgot-password__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-registration-guide-qh88-forgot-password__faq-answer {
  color: #555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-registration-guide-qh88-forgot-password__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-registration-guide-qh88-forgot-password__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

@media (max-width: 767px) {
  .page-registration-guide-qh88-forgot-password__title {
    font-size: 2em;
  }

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

  .page-registration-guide-qh88-forgot-password__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-registration-guide-qh88-forgot-password__step-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .page-registration-guide-qh88-forgot-password__btn {
    display: block;
    width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .page-registration-guide-qh88-forgot-password__hero-section {
    padding: 60px 0;
  }

  .page-registration-guide-qh88-forgot-password__title {
    font-size: 1.6em;
  }

  .page-registration-guide-qh88-forgot-password__subtitle {
    font-size: 1em;
  }

  .page-registration-guide-qh88-forgot-password__section-title {
    font-size: 1.5em;
  }
}