.page-login {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px; /* Minimum height for hero */
}

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

.page-login__hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
}

.page-login__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-login__hero-button {
  display: inline-block;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-login__hero-button:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.page-login__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-login__content-section .page-login__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-login__section-title {
  font-size: 2em;
  color: #007bff; /* Primary brand color */
  margin-bottom: 20px;
  text-align: center;
}

.page-login__section-intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  color: #555555;
}

.page-login__login-form-area,
.page-login__info-area {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-login__login-form-area .page-login__section-title,
.page-login__info-area .page-login__section-title {
  text-align: left;
}

.page-login__login-form-area .page-login__section-intro,
.page-login__info-area .page-login__section-intro {
  text-align: left;
}

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

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

.page-login__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

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

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

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

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

.page-login__forgot-password:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-login__submit-button {
  width: 100%;
  padding: 15px;
  background-color: #28a745; /* Secondary brand color */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-login__submit-button:hover {
  background-color: #1e7e34; /* Darker shade on hover */
}

.page-login__register-prompt {
  text-align: center;
  margin-top: 20px;
  color: #555555;
}

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

.page-login__register-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-login__login-process-list {
  list-style: none;
  padding: 0;
}

.page-login__process-item {
  background-color: #e9f7ef; /* Light background for process items */
  border-left: 5px solid #28a745;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.page-login__process-title {
  color: #007bff;
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-login__process-description {
  color: #555555;
}

.page-login__security-section {
  padding: 60px 0;
  background-color: #eef4f9;
  text-align: center;
}

.page-login__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__security-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-login__security-icon {
  width: 200px; /* Minimum size for content images */
  height: 150px; /* Adjust height to maintain aspect ratio */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-login__security-card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-login__security-card-description {
  color: #555555;
}

.page-login__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-login__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

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

.page-login__faq-item[open] .page-login__faq-question {
  background-color: #e0e0e0;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

.page-login__faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-login__hero-title {
    font-size: 2.2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__content-section .page-login__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-login {
    padding-top: var(--header-offset, 120px);
  }
  .page-login__hero-overlay {
    padding: 30px;
  }
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__security-grid {
    grid-template-columns: 1fr;
  }
  .page-login__security-icon {
    max-width: 100%;
    height: auto;
  }
  .page-login__container {
    padding: 0 15px;
  }
  .page-login__login-form-area,
  .page-login__info-area {
    padding: 20px;
  }
  /* Ensure content images are responsive and not too small */
  .page-login img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min- /* Example, adjust based on aspect ratio */
    object-fit: cover; /* or contain, based on desired display */
  }
  .page-login__security-icon {
    min-width: 200px;
    min-height: 150px;
  }
  .page-login__faq-list {
    margin-top: 20px;
  }
  .page-login__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-login__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-overlay {
    padding: 20px;
  }
  .page-login__hero-title {
    font-size: 1.5em;
  }
  .page-login__hero-description {
    font-size: 0.8em;
  }
  .page-login__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-login__section-title {
    font-size: 1.5em;
  }
  .page-login__login-form-options {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-login__forgot-password {
    margin-top: 10px;
  }
}