.page-login {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-login__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-login__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-login__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #F0F0F0;
}

.page-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-login__login-button,
.page-login__register-button,
.page-login__step-button,
.page-login__faq-button,
.page-login__register-now-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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);
}

.page-login__login-button {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-login__login-button:hover {
  background-color: #e0a33a;
  transform: translateY(-2px);
}

.page-login__register-button {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-login__register-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-login__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-login__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-login__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-login__text-block {
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #333333;
}

.page-login__text-block p {
  margin-bottom: 15px;
}

.page-login__login-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-login__step-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-login__step-item p {
  margin-bottom: 20px;
}

.page-login__step-button {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.page-login__step-button:hover {
  background-color: #e0a33a;
}

.page-login__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-login__security-tips {
  list-style: none;
  padding: 0;
}

.page-login__tip-item {
  background-color: #f0f8ff;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-login__tip-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.3em;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  background-color: #FCBC45;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
  background-color: #e0a33a;
}

.page-login__faq-toggle {
  position: absolute;
  right: 25px;
  font-size: 1.5em;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
  transform: translateY(-50%) rotate(45deg);
}

.page-login__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #333333;
  background-color: #FFFFFF;
  border-top: 1px solid #eee;
}

.page-login__faq-answer p {
  margin-bottom: 15px;
}

.page-login__faq-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-login__faq-button:hover {
  background-color: #333333;
}

.page-login__register-prompt {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.page-login__register-prompt p {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.page-login__register-now-button {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-login__register-now-button:hover {
  background-color: #e0a33a;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-login__main-title {
    font-size: 2em;
  }

  .page-login__hero-description {
    font-size: 1em;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-login__login-button,
  .page-login__register-button,
  .page-login__register-now-button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-login__section-title {
    font-size: 1.8em;
  }

  .page-login__step-title,
  .page-login__tip-title,
  .page-login__faq-question {
    font-size: 1.2em;
  }

  .page-login__text-block,
  .page-login__faq-answer {
    font-size: 0.95em;
  }

  .page-login__hero-image,
  .page-login__step-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-section,
  .page-login__content-area {
    padding: 30px 15px;
  }

  .page-login__main-title {
    font-size: 1.8em;
  }

  .page-login__section-title {
    font-size: 1.6em;
  }

  .page-login__faq-question {
    padding: 15px 20px;
  }

  .page-login__faq-toggle {
    right: 20px;
  }
}