.page-login {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-login__hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 500px;
  overflow: hidden;
}

.page-login__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-login__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  color: #ffffff;
  background: rgba(0, 51, 102, 0.85);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-login__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-login__form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  margin: 0 auto;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333333;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: #666666;
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.9em;
}

.page-login__remember-me {
  display: flex;
  align-items: center;
}

.page-login__checkbox {
  margin-right: 8px;
}

.page-login__checkbox-label {
  color: #ffffff;
}

.page-login__forgot-password {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-login__forgot-password:hover {
  color: #ffe066;
}

.page-login__login-button {
  width: 100%;
  padding: 15px;
  background-color: #FFD700;
  color: #003366;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-login__login-button a {
  color: #003366;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

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

.page-login__register-prompt {
  margin-top: 20px;
  color: #ffffff;
  font-size: 1em;
}

.page-login__register-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__register-link:hover {
  color: #ffe066;
}

.page-login__section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-login__section-description {
  font-size: 1.05em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-login__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-login__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__process-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-login__process-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #003366;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login__process-item:nth-child(odd) {
  border-left-color: #FFD700;
}

.page-login__process-step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-login__process-step-description {
  color: #555555;
  font-size: 0.95em;
}

.page-login__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-login__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #003366;
  color: #FFD700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-login__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-login__security-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.page-login__security-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-login__security-subtitle {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-login__security-description {
  color: #555555;
  font-size: 0.95em;
}

.page-login__faq-list {
  margin-top: 30px;
}

.page-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-login__faq-question::-webkit-details-marker {
  display: none;
}

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

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

.page-login__faq-answer {
  padding: 15px 25px 20px;
  background-color: #ffffff;
  color: #555555;
  font-size: 1em;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-login__hero-content {
    padding: 30px;
  }

  .page-login__main-heading {
    font-size: 2em;
  }

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

  .page-login__form-container {
    padding: 20px;
  }

  .page-login__login-button, .page-login__cta-button {
    padding: 12px 20px;
    font-size: 1.05em;
  }

  .page-login__section {
    margin: 40px auto;
    padding: 30px 15px;
  }

  .page-login__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-login__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-login__process-list, .page-login__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-login__process-item, .page-login__security-item {
    padding: 25px;
  }

  .page-login__process-step-title {
    font-size: 1.3em;
  }

  .page-login__security-subtitle {
    font-size: 1.4em;
  }

  .page-login__faq-question {
    font-size: 1.05em;
    padding: 18px 20px;
  }

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

  /* Mobile content area images must not overflow */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__main-heading {
    font-size: 1.6em;
  }
  .page-login__hero-content {
    padding: 20px;
  }
  .page-login__form-options {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-login__forgot-password {
    margin-top: 10px;
  }
}