/* style/support-forgot-password-recovery.css */

/* Biến CSS */
:root {
  --page-support-forgot-password-recovery-primary-color: #001F3F;
  --page-support-forgot-password-recovery-secondary-color: #FFD700;
  --page-support-forgot-password-recovery-text-light: #F8F8F8;
  --page-support-forgot-password-recovery-text-dark: #333333;
  --page-support-forgot-password-recovery-bg-dark: #001F3F;
  --page-support-forgot-password-recovery-bg-light: #E0E0E0;
  --page-support-forgot-password-recovery-accent-gold: #FFD700;
}

/* Tổng thể trang */
.page-support-forgot-password-recovery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-support-forgot-password-recovery-text-dark);
  background-color: var(--page-support-forgot-password-recovery-bg-light);
}

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

/* Hero Section */
.page-support-forgot-password-recovery__hero-section {
  background: linear-gradient(135deg, var(--page-support-forgot-password-recovery-primary-color) 0%, #003366 100%);
  color: var(--page-support-forgot-password-recovery-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-forgot-password-recovery__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-support-forgot-password-recovery-accent-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support-forgot-password-recovery__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  color: #CCCCCC;
}

.page-support-forgot-password-recovery__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

/* Content Sections */
.page-support-forgot-password-recovery__content-section {
  padding: 60px 0;
}

.page-support-forgot-password-recovery__bg--dark {
  background-color: var(--page-support-forgot-password-recovery-bg-dark);
  color: var(--page-support-forgot-password-recovery-text-light);
}

.page-support-forgot-password-recovery__bg--light {
  background-color: var(--page-support-forgot-password-recovery-bg-light);
  color: var(--page-support-forgot-password-recovery-text-dark);
}

.page-support-forgot-password-recovery__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-support-forgot-password-recovery__bg--dark .page-support-forgot-password-recovery__section-title {
  color: var(--page-support-forgot-password-recovery-accent-gold);
}

.page-support-forgot-password-recovery__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-support-forgot-password-recovery-accent-gold);
  border-radius: 2px;
}

.page-support-forgot-password-recovery__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.page-support-forgot-password-recovery__image--center {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* List Styles */
.page-support-forgot-password-recovery__step-list,
.page-support-forgot-password-recovery__tips-list,
.page-support-forgot-password-recovery__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}

.page-support-forgot-password-recovery__step-list {
  counter-reset: step-counter;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-support-forgot-password-recovery__step-list .page-support-forgot-password-recovery__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__step-list .page-support-forgot-password-recovery__list-item {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
}

.page-support-forgot-password-recovery__step-list .page-support-forgot-password-recovery__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-support-forgot-password-recovery__step-list .page-support-forgot-password-recovery__list-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--page-support-forgot-password-recovery-accent-gold);
  color: var(--page-support-forgot-password-recovery-primary-color);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-support-forgot-password-recovery__list-title {
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 15px;
  color: var(--page-support-forgot-password-recovery-accent-gold);
}

.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__list-title {
  color: var(--page-support-forgot-password-recovery-primary-color);
}

.page-support-forgot-password-recovery__list-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #EEEEEE;
}

.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__list-item p {
  color: var(--page-support-forgot-password-recovery-text-dark);
}

.page-support-forgot-password-recovery__tips-list,
.page-support-forgot-password-recovery__troubleshooting-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-support-forgot-password-recovery__tips-list .page-support-forgot-password-recovery__list-item,
.page-support-forgot-password-recovery__troubleshooting-list .page-support-forgot-password-recovery__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__tips-list .page-support-forgot-password-recovery__list-item,
.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__troubleshooting-list .page-support-forgot-password-recovery__list-item {
  background-color: #F8F8F8;
}

.page-support-forgot-password-recovery__tips-list .page-support-forgot-password-recovery__list-item:hover,
.page-support-forgot-password-recovery__troubleshooting-list .page-support-forgot-password-recovery__list-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__tips-list .page-support-forgot-password-recovery__list-item:hover,
.page-support-forgot-password-recovery__bg--light .page-support-forgot-password-recovery__troubleshooting-list .page-support-forgot-password-recovery__list-item:hover {
  background-color: #EFEFEF;
}

/* Call to Action Section */
.page-support-forgot-password-recovery__cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--page-support-forgot-password-recovery-bg-dark);
  color: var(--page-support-forgot-password-recovery-text-light);
}

.page-support-forgot-password-recovery__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--page-support-forgot-password-recovery-accent-gold);
  color: var(--page-support-forgot-password-recovery-primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.page-support-forgot-password-recovery__btn:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-support-forgot-password-recovery__link {
  color: var(--page-support-forgot-password-recovery-accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support-forgot-password-recovery__link:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support-forgot-password-recovery__hero-title {
    font-size: 2.2em;
  }
  .page-support-forgot-password-recovery__section-title {
    font-size: 1.8em;
  }
  .page-support-forgot-password-recovery__step-list,
  .page-support-forgot-password-recovery__tips-list,
  .page-support-forgot-password-recovery__troubleshooting-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-support-forgot-password-recovery__hero-section {
    padding: 60px 0;
  }
  .page-support-forgot-password-recovery__hero-title {
    font-size: 1.8em;
  }
  .page-support-forgot-password-recovery__hero-description {
    font-size: 1em;
  }
  .page-support-forgot-password-recovery__content-section {
    padding: 40px 0;
  }
  .page-support-forgot-password-recovery__section-title {
    font-size: 1.5em;
  }
  .page-support-forgot-password-recovery__text-block,
  .page-support-forgot-password-recovery__list-item p {
    font-size: 0.95em;
  }
  .page-support-forgot-password-recovery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support-forgot-password-recovery__image--center {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-support-forgot-password-recovery__hero-section {
    padding: 40px 0;
  }
  .page-support-forgot-password-recovery__hero-title {
    font-size: 1.5em;
  }
  .page-support-forgot-password-recovery__hero-description {
    font-size: 0.9em;
  }
  .page-support-forgot-password-recovery__container {
    padding: 0 15px;
  }
  .page-support-forgot-password-recovery__section-title {
    font-size: 1.3em;
  }
  .page-support-forgot-password-recovery__list-title {
    font-size: 1.2em;
  }
  .page-support-forgot-password-recovery__step-list .page-support-forgot-password-recovery__list-item::before {
    left: 15px;
  }
}