.page-login {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Body background is #000000, so use light text */
  line-height: 1.6;
}

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

.page-login__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Fixed header spacing */
  padding-bottom: 40px;
  text-align: center;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure minimum size */
}

.page-login__overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  padding: 20px;
  box-sizing: border-box;
}

.page-login__main-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
  max-width: 900px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

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

.page-login__login-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white for card */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 450px;
  box-sizing: border-box;
  text-align: left;
}

.page-login__card-title {
  font-size: 2em;
  margin-bottom: 25px;
  color: #ffffff;
  text-align: center;
}

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

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

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

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

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

.page-login__forgot-password,
.page-login__register-link {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-login__submit-button {
  width: 100%;
  padding: 15px;
  background: #EA7C07; /* Login specific color */
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-login__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__features-section {
  padding: 60px 0;
  background: #0d0d0d; /* Slightly lighter dark for contrast with body */
  color: #ffffff;
}

.page-login__dark-section {
  background: #0d0d0d;
  color: #ffffff;
}

.page-login__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.page-login__feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-login__feature-icon {
  width: 100%; /* Ensure images are responsive */
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-login__feature-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-login__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-login__cta-section {
  padding: 60px 0;
  background: #26A9E0; /* Brand color background */
  color: #ffffff;
  text-align: center;
}

.page-login__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-login__btn-primary:hover {
  background: transparent;
  color: #ffffff;
}

.page-login__faq-section {
  padding: 60px 0;
  color: #ffffff;
}

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

.page-login__faq-item {
  background: rgba(255, 255, 255, 0.08);
  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: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-login__faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-login__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.5em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-login {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO 主图区域 */
  .page-login__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 30px;
  }

  .page-login__overlay-content {
    padding: 15px;
  }

  .page-login__main-title {
    font-size: 1.8em !important;
    margin-bottom: 10px;
  }

  .page-login__hero-description {
    font-size: 0.95em !important;
    margin-bottom: 20px;
  }

  .page-login__login-card {
    padding: 20px;
    max-width: 90%;
  }

  .page-login__card-title {
    font-size: 1.5em !important;
    margin-bottom: 20px;
  }

  .page-login__form-input {
    padding: 10px 12px;
  }

  .page-login__form-options {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .page-login__submit-button {
    padding: 12px !important;
    font-size: 1.1em !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 通用图片与容器 */
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-login__section,
  .page-login__card,
  .page-login__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  /* Sản phẩm展示图区域 (not applicable for login, but for completeness, if it were there) */
  .page-login__features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

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

  .page-login__feature-icon {
    max-width: 200px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-login__feature-title {
    font-size: 1.5em !important;
  }

  /* Nút và vùng chứa nút */
  .page-login__btn-primary {
    padding: 12px 20px !important;
    font-size: 1.1em !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-login__cta-buttons,
  .page-login__button-group,
  .page-login__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex; /* Ensure flex for wrapping if multiple buttons */
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  /* Các module nội dung khác */
  .page-login__faq-question {
    padding: 15px 20px;
    font-size: 1em !important;
  }

  .page-login__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em !important;
  }
}