.page-login {
  color: #000000; /* Dark text for light body background */
}

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

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

.page-login__main-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__login-card {
  background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white for form */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 450px;
  margin: 40px auto;
  border: 1px solid #e0e0e0;
}

.page-login__card-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
}

.page-login__form-group {
  margin-bottom: 20px;
  text-align: left;
}

.page-login__label {
  display: block;
  font-size: 1em;
  color: #333333;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-login__input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
  background-color: #f9f9f9;
}

.page-login__input::placeholder {
  color: #999999;
}

.page-login__submit-button {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.page-login__submit-button:hover {
  background-color: #e0a53b;
}

.page-login__register-text, .page-login__forgot-password-text {
  margin-top: 20px;
  font-size: 0.95em;
  color: #555555;
}

.page-login__register-link, .page-login__forgot-password-link {
  color: #FCBC45; /* Links color */
  text-decoration: none;
  font-weight: bold;
}

.page-login__register-link:hover, .page-login__forgot-password-link:hover {
  text-decoration: underline;
}

.page-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

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

.page-login__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-login__section-paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 25px;
  text-align: justify;
}

.page-login__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  margin-right: 15px;
}

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

.page-login__cta-button--explore {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 200px;
  text-align: center;
}

.page-login__process-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-login__list-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-login__list-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-login__content-image {
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 800px;
  height: 600px;
  object-fit: cover;
}

.page-login__security-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-login__security-list .page-login__list-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-login__faq-section {
  padding-bottom: 80px;
}

.page-login__faq-container {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-login__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  position: relative;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

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

.page-login__faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #FCBC45;
  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: 1em;
  line-height: 1.6;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

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

.page-login__cta-section {
  text-align: center;
  background-color: #f5f5f5;
  padding: 80px 20px;
}

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

.page-login__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-login__cta-button--register:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

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

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

  .page-login__login-card {
    padding: 30px;
    max-width: 100%;
  }

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

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

  .page-login__section-paragraph {
    font-size: 0.95em;
  }

  .page-login__list-title {
    font-size: 1.4em;
  }

  .page-login__list-description {
    font-size: 0.9em;
  }

  .page-login__faq-question {
    font-size: 1em;
  }

  .page-login__faq-answer {
    font-size: 0.9em;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-login__cta-button {
    width: 80%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-login__hero-section {
    padding-bottom: 40px;
  }

  /* Mobile content image constraint */
  .page-login__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.8em;
  }

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

  .page-login__login-card {
    padding: 20px;
  }

  .page-login__card-title {
    font-size: 1.5em;
  }

  .page-login__submit-button {
    font-size: 1em;
    padding: 12px 20px;
  }

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

  .page-login__cta-button {
    width: 90%;
  }
}