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

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

.page-registration-guide-password-recovery__hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #660000 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-guide-password-recovery__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0.3;
}

.page-registration-guide-password-recovery__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFD700;
}

.page-registration-guide-password-recovery__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F2F2F2;
}

.page-registration-guide-password-recovery__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #333333;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-registration-guide-password-recovery__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

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

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

.page-registration-guide-password-recovery__subsection-title {
  font-size: 1.8em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #CC0000;
  padding-left: 15px;
}

.page-registration-guide-password-recovery p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555555;
}

.page-registration-guide-password-recovery ul,
.page-registration-guide-password-recovery ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-registration-guide-password-recovery ul li,
.page-registration-guide-password-recovery ol li {
  margin-bottom: 10px;
}

.page-registration-guide-password-recovery strong {
  color: #CC0000;
}

.page-registration-guide-password-recovery__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

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

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

.page-registration-guide-password-recovery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-registration-guide-password-recovery__feature-item h3 {
  color: #CC0000;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-registration-guide-password-recovery__feature-item p {
  font-size: 0.95em;
  color: #666666;
}

.page-registration-guide-password-recovery__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}

.page-registration-guide-password-recovery__step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 8px solid #CC0000;
  position: relative;
  padding-left: 50px;
}

.page-registration-guide-password-recovery__step-number {
  position: absolute;
  left: -20px;
  top: 30px;
  background-color: #FFD700;
  color: #333333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-password-recovery__step-item h3 {
  color: #CC0000;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-registration-guide-password-recovery__step-item p {
  color: #555555;
}

.page-registration-guide-password-recovery__step-item .page-registration-guide-password-recovery__btn {
  margin-top: 15px;
}

.page-registration-guide-password-recovery__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-password-recovery__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1em;
}

.page-registration-guide-password-recovery__btn--primary {
  background-color: #CC0000;
  color: #FFFFFF;
  border-color: #CC0000;
}

.page-registration-guide-password-recovery__btn--primary:hover {
  background-color: #990000;
  border-color: #990000;
  transform: translateY(-2px);
}

.page-registration-guide-password-recovery__btn--secondary {
  background-color: #333333;
  color: #FFFFFF;
  border-color: #333333;
}

.page-registration-guide-password-recovery__btn--secondary:hover {
  background-color: #555555;
  border-color: #555555;
  transform: translateY(-2px);
}

.page-registration-guide-password-recovery__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-password-recovery__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-registration-guide-password-recovery__checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-registration-guide-password-recovery__checklist li img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-registration-guide-password-recovery__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-registration-guide-password-recovery__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-registration-guide-password-recovery__cta-button--secondary {
  background-color: #333333;
  color: #FFFFFF;
}

.page-registration-guide-password-recovery__cta-button--secondary:hover {
  background-color: #555555;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-registration-guide-password-recovery__steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-registration-guide-password-recovery__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-registration-guide-password-recovery__step-item {
    padding-left: 30px; /* Adjust for larger screens */
    border-left: none;
    border-top: 8px solid #CC0000;
    padding-top: 50px;
  }

  .page-registration-guide-password-recovery__step-number {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
}

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

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

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

  .page-registration-guide-password-recovery__feature-grid,
  .page-registration-guide-password-recovery__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-registration-guide-password-recovery__step-number {
    left: -15px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-registration-guide-password-recovery__step-item {
    padding-left: 40px;
  }

  .page-registration-guide-password-recovery__cta-button--large {
    width: 100%;
    max-width: 300px;
  }
}

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

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

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

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

  .page-registration-guide-password-recovery__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}