:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
}

.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background-white);
}

/* Fixed Header Spacing */
.page-login__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* HERO/MAIN LOGIN SECTION */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), #4db9f5);
}

.page-login__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-login__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-login__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 500px;
  background: var(--background-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.page-login__main-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-login__description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-login__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-dark);
}

.page-login__form-input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__login-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--login-button-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.page-login__login-button:hover {
  background: #d46b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-login__form-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.95em;
}

.page-login__forgot-password,
.page-login__register-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-login__separator {
  color: #cccccc;
}

/* GENERAL SECTION STYLES */
.page-login__section {
  padding: 80px 20px;
  text-align: center;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-login__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.page-login__sub-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-login__text-white {
  color: var(--text-light) !important;
}

/* BENEFITS SECTION */
.page-login__benefits-section {
  background: var(--background-light);
}

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

.page-login__benefit-card {
  background: var(--background-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-login__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-login__benefit-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-login__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-login__benefit-card p {
  color: #555555;
  font-size: 1em;
}

/* LOGIN GUIDE SECTION */
.page-login__guide-section {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-login__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-login__step-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-login__step-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-login__step-title {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-login__step-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1em;
}

.page-login__troubleshooting {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 12px;
  margin-top: 60px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-login__troubleshooting .page-login__sub-title {
  color: var(--text-light);
}

.page-login__list {
  list-style: disc;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1em;
}

.page-login__list li {
  margin-bottom: 10px;
}

.page-login__list strong {
  color: var(--secondary-color);
}

/* DOWNLOAD APP SECTION */
.page-login__download-section {
  background: linear-gradient(to right, var(--background-white), var(--background-light));
  padding: 80px 20px;
}

.page-login__download-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
  background: var(--background-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-login__download-image {
  width: 40%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-login__download-text {
  flex-grow: 1;
}

.page-login__download-text .page-login__section-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: left;
}

.page-login__download-text .page-login__section-description {
  color: #555555;
  margin-bottom: 30px;
  text-align: left;
  max-width: none;
}

.page-login__download-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__download-button:hover {
  background: #1a8cc6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* FAQ SECTION */
.page-login__faq-section {
  background: var(--background-light);
  padding: 80px 20px;
}

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

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

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-dark);
}

.page-login__faq-question:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.page-login__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-login__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-login__faq-item.active .page-login__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

.page-login__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fdfdfd;
  color: #555555;
  border-top: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-login__faq-item.active .page-login__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-login__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555555;
}


/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .page-login__hero-content {
    width: 95%;
  }

  .page-login__download-content {
    flex-direction: column;
    text-align: center;
  }

  .page-login__download-image {
    width: 60%;
    max-width: 300px;
    margin-bottom: 30px;
  }

  .page-login__download-text .page-login__section-title,
  .page-login__download-text .page-login__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-login__description {
    font-size: 1em;
  }

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

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

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

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

  .page-login__benefits-grid,
  .page-login__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-login__benefit-card img {
    
  }

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

  .page-login__step-item {
    padding: 20px;
  }

  .page-login__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .page-login__step-title {
    font-size: 1.2em;
  }

  .page-login__troubleshooting {
    padding: 20px;
    margin-top: 40px;
  }

  .page-login__list {
    padding-left: 20px;
  }

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

  .page-login__download-image {
    width: 80%;
  }

  /* FAQ MOBILE */
  .page-login__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .page-login__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-login__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .page-login__faq-answer {
    padding: 0 20px;
  }

  .page-login__faq-item.active .page-login__faq-answer {
    padding: 15px 20px !important;
  }

  /* General image and container responsiveness */
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-login__section,
  .page-login__card,
  .page-login__container,
  .page-login__hero-container,
  .page-login__hero-content,
  .page-login__download-content,
  .page-login__faq-list,
  .page-login__faq-item,
  .page-login__form {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsiveness */
  .page-login__login-button,
  .page-login__download-button,
  .page-login a[class*="button"],
  .page-login a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-login__form-links {
    flex-direction: column;
    gap: 5px;
  }
  .page-login__form-links .page-login__separator {
    display: none;
  }
}

/* Ensure no filter on images */
.page-login img {
  filter: none !important;
}

/* Ensure color contrast for dark background elements */
.page-login__dark-bg {
  color: var(--text-light);
}
.page-login__light-bg {
  color: var(--text-dark);
}