.page-register-login-forgot-password {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F163D; /* Darker blue for overall background */
}

.page-register-login-forgot-password .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-register-login-forgot-password .hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #0F163D 100%); /* Main brand color to darker blue */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
  position: relative;
  overflow: hidden;
}

.page-register-login-forgot-password .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  line-height: 1.2;
}

.page-register-login-forgot-password .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light grey */
}

.page-register-login-forgot-password .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-register-login-forgot-password .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Main brand color */
}

.page-register-login-forgot-password .btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-register-login-forgot-password .btn-secondary {
  background-color: #1A237E; /* Main brand color */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-register-login-forgot-password .btn-secondary:hover {
  background-color: #2e3893; /* Slightly lighter brand color */
  transform: translateY(-2px);
}

.page-register-login-forgot-password .content-section {
  padding: 60px 0;
  background-color: #121A47; /* Slightly lighter dark blue for content sections */
}

.page-register-login-forgot-password .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  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 .section-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 50px;
  color: #B0B0B0;
}

.page-register-login-forgot-password .text-block {
  background-color: #1A237E; /* Main brand color for text blocks */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-register-login-forgot-password .text-block p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0; /* Light grey */
}

.page-register-login-forgot-password .text-block ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-register-login-forgot-password .text-block ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-register-login-forgot-password .text-block ul li strong {
  color: #FFD700;
}

.page-register-login-forgot-password .image-block {
  text-align: center;
  margin-bottom: 40px;
}

.page-register-login-forgot-password .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-register-login-forgot-password .step-list {
  list-style: none;
  padding: 0;
}

.page-register-login-forgot-password .step-list li {
  background-color: #1A237E; /* Main brand color for steps */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  counter-increment: step-counter;
}

.page-register-login-forgot-password .step-list li::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Main brand color */
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register-login-forgot-password .step-list li h3 {
  color: #FFD700; /* Gold */
  font-size: 1.8em;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 10px;
}

.page-register-login-forgot-password .step-list li p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-register-login-forgot-password .step-list li .btn {
  margin-top: 15px;
}

.page-register-login-forgot-password .step-image {
  margin-top: 25px;
  border: 1px solid #FFD700;
}

.page-register-login-forgot-password .cta-buttons {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-register-login-forgot-password .hero-title {
    font-size: 2.8em;
  }
  .page-register-login-forgot-password .hero-subtitle {
    font-size: 1.3em;
  }
  .page-register-login-forgot-password .section-title {
    font-size: 2em;
  }
  .page-register-login-forgot-password .step-list li h3 {
    font-size: 1.5em;
  }
  .page-register-login-forgot-password .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-register-login-forgot-password .hero-section {
    padding: 80px 0;
  }
  .page-register-login-forgot-password .hero-title {
    font-size: 2.2em;
  }
  .page-register-login-forgot-password .hero-subtitle {
    font-size: 1.1em;
  }
  .page-register-login-forgot-password .section-title {
    font-size: 1.8em;
  }
  .page-register-login-forgot-password .text-block, .page-register-login-forgot-password .step-list li {
    padding: 20px;
  }
  .page-register-login-forgot-password .step-list li::before {
    top: -10px;
    left: 15px;
    padding: 6px 12px;
    font-size: 1em;
  }
  .page-register-login-forgot-password .step-list li h3 {
    font-size: 1.3em;
    margin-top: 5px;
  }
  .page-register-login-forgot-password .btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-register-login-forgot-password .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-register-login-forgot-password .hero-section {
    padding: 60px 0;
  }
  .page-register-login-forgot-password .hero-title {
    font-size: 1.8em;
  }
  .page-register-login-forgot-password .hero-subtitle {
    font-size: 1em;
  }
  .page-register-login-forgot-password .section-title {
    font-size: 1.5em;
  }
  .page-register-login-forgot-password .text-block p, .page-register-login-forgot-password .step-list li p {
    font-size: 0.95em;
  }
}