/* style/register-login-forgot-password.css */

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

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

.page-register-login-forgot-password__hero-section {
  background: linear-gradient(135deg, #0056b3, #003d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-register-login-forgot-password__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-register-login-forgot-password__ripple 10s infinite ease-out;
}

.page-register-login-forgot-password__hero-section::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-register-login-forgot-password__ripple 12s infinite reverse ease-in;
}

@keyframes page-register-login-forgot-password__ripple {
  0% { transform: scale(0.8) translate(0, 0); opacity: 0.7; }
  50% { transform: scale(1.2) translate(20px, 20px); opacity: 0.9; }
  100% { transform: scale(0.8) translate(0, 0); opacity: 0.7; }
}

.page-register-login-forgot-password__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffd700; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.page-register-login-forgot-password__intro-text {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 50px auto;
    font-size: 1.1em;
    color: #555;
}

.page-register-login-forgot-password__recovery-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-register-login-forgot-password__step {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-forgot-password__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login-forgot-password__step-icon {
  background-color: #0056b3;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.4);
}

.page-register-login-forgot-password__step-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-register-login-forgot-password__step p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

.page-register-login-forgot-password__list {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #555;
}

.page-register-login-forgot-password__list li {
  margin-bottom: 8px;
}

.page-register-login-forgot-password__step-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__faq {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-register-login-forgot-password__faq-item {
  background-color: #f0f8ff;
  border-left: 5px solid #0056b3;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login-forgot-password__faq-question {
  font-size: 1.2em;
  color: #0056b3;
  margin-bottom: 10px;
}

.page-register-login-forgot-password__faq-answer {
  font-size: 1em;
  color: #444;
}

.page-register-login-forgot-password__image--full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login-forgot-password__cta-buttons {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-register-login-forgot-password__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-register-login-forgot-password__btn--primary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #0056b3;
}

.page-register-login-forgot-password__btn--primary:hover {
  background-color: #003d80;
  border-color: #003d80;
  transform: translateY(-3px);
}

.page-register-login-forgot-password__btn--secondary {
  background-color: #ffd700;
  color: #0056b3;
  border: 2px solid #ffd700;
}

.page-register-login-forgot-password__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-register-login-forgot-password__btn--tertiary {
  background-color: transparent;
  color: #0056b3;
  border: 2px solid #0056b3;
}

.page-register-login-forgot-password__btn--tertiary:hover {
  background-color: #0056b3;
  color: #fff;
  transform: translateY(-3px);
}

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

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

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

  .page-register-login-forgot-password__recovery-steps {
    grid-template-columns: 1fr;
  }

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

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

  .page-register-login-forgot-password__btn {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }

  .page-register-login-forgot-password__cta-buttons {
    flex-direction: column;
  }
}

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

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

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