.page-login__hero-section {
  position: relative;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--header-offset, 120px);
  margin-top: 0;
  background: linear-gradient(135deg, #007bff, #1a9aff);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-login__hero-content {
  max-width: 600px;
  padding: 20px;
}

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

.page-login__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-login__form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
}

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

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

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  color: #333333;
}

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

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

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

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

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

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

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

.page-login__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-login__btn--primary {
  background: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-login__btn--primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

.page-login__btn--secondary {
  background: #ffc107;
  color: #333333;
  border: 2px solid #ffc107;
  margin-top: 15px;
}

.page-login__btn--secondary:hover {
  background: #e0a800;
  border-color: #e0a800;
}

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

.page-login__register-prompt p {
  margin-bottom: 10px;
  font-size: 1em;
}

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

.page-login__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}

.page-login__dark-bg .page-login__section-title,
.page-login__medium-bg .page-login__section-title {
  color: #ffffff;
}

.page-login__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-login__dark-bg .page-login__text-block,
.page-login__medium-bg .page-login__text-block {
  color: #e0e0e0;
}

.page-login__features-section {
  padding: 80px 0;
  background: #007bff;
  color: #ffffff;
}

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

.page-login__feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-login__feature-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-login__feature-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-login__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-login__security-section {
  padding: 80px 0;
  background: #f8f9fa;
  color: #333333;
}

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

.page-login__security-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-login__security-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #007bff;
}

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

.page-login__mobile-section {
  padding: 80px 0;
  background: #ffc107;
  color: #333333;
}

.page-login__mobile-section .page-login__section-title,
.page-login__mobile-section .page-login__text-block {
  color: #333333;
}

.page-login__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-login__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-login__mobile-subtitle {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333333;
}

.page-login__mobile-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555555;
}

.page-login__mobile-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-login__mobile-benefits li {
  font-size: 1.05em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #555555;
}

.page-login__icon {
  font-size: 1.2em;
  margin-right: 10px;
  color: #007bff;
}

.page-login__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-login__mobile-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.page-login__troubleshoot-section {
  padding: 80px 0;
  background: #ffffff;
  color: #333333;
}

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

.page-login__troubleshoot-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__troubleshoot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-login__troubleshoot-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #007bff;
}

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

.page-login__faq-section {
  padding: 80px 0;
  background: #007bff;
  color: #ffffff;
}

.page-login__faq-section .page-login__section-title {
  color: #ffffff;
}

.page-login__faq-section .page-login__text-block {
  color: #e0e0e0;
}

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

.page-login__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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 15px;
  opacity: 0;
}

.page-login__faq-item.active .page-login__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-login__faq-answer p {
  color: #333333;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

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

.page-login__faq-question:active {
  background: #eeeeee;
}

.page-login__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-login__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

.page-login__faq-item.active .page-login__faq-toggle {
  color: #333;
}

.page-login__contact-section {
  padding: 80px 0;
  background: #f8f9fa;
  color: #333333;
  text-align: center;
}

.page-login__contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-login__copyright-section {
  padding: 30px 0;
  background: #333333;
  color: #ffffff;
  text-align: center;
  font-size: 0.9em;
}

.page-login__copyright-text {
  margin: 0;
  color: #cccccc;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.5em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__mobile-content {
    flex-direction: column;
  }
  .page-login__mobile-text, .page-login__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-login__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-login__description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-login__form-wrapper {
    padding: 30px;
  }
  .page-login__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-login__text-block {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-login__features-section, .page-login__security-section, .page-login__mobile-section, .page-login__troubleshoot-section, .page-login__faq-section, .page-login__contact-section {
    padding: 60px 0;
  }
  .page-login__feature-grid, .page-login__security-grid, .page-login__troubleshoot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-login__feature-card, .page-login__security-item, .page-login__troubleshoot-card {
    padding: 25px;
  }
  .page-login__feature-title, .page-login__security-title, .page-login__troubleshoot-title {
    font-size: 1.2em;
  }
  .page-login__mobile-subtitle {
    font-size: 1.5em;
  }
  .page-login__btn {
    padding: 10px 20px;
    font-size: 1em;
    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__contact-methods {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .page-login__forgot-password {
    margin-top: 5px;
  }
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-login__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-login__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-login__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-login__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-login__faq-answer {
    padding: 0 15px;
  }
  .page-login__faq-item.active .page-login__faq-answer {
    padding: 15px !important;
  }
}