.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background from shared.css */
}

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

/* Color Contrast Classes */
.page-login__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-login__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-login__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-login__hero-title {
  font-size: 2.8em;
  color: #017439;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-login__form-wrapper {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  margin-bottom: 40px;
}

.page-login__login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-login__form-group {
  text-align: left;
}

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

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

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

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

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

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

.page-login__forgot-password-link {
  color: #017439;
  text-decoration: none;
}

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

.page-login__btn-primary {
  background-color: #C30808; /* Login button background */
  color: #FFFF00; /* Login button font */  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

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

.page-login__register-link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

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

.page-login__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
}

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

/* Advantages Section */
.page-login__advantages-section {
  padding: 60px 0;
  background-color: #017439; /* Dark background */
  color: #ffffff; /* Light text */
  text-align: center;
}

.page-login__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: inherit;
}

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

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

.page-login__advantage-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-login__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none;
}

.page-login__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-login__card-text {
  font-size: 1em;
  color: #555555;
}

.page-login__inline-link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

.page-login__inline-link:hover {
  text-decoration: underline;
}

/* Guide Section */
.page-login__guide-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-login__guide-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-login__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-login__step-number {
  width: 50px;
  height: 50px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-login__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-login__step-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-login__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  filter: none;
}

.page-login__troubleshooting {
  margin-top: 60px;
  text-align: left;
  background-color: #f0f8f0;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #017439;
}

.page-login__troubleshooting-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 20px;
}

.page-login__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-login__troubleshooting-list li {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-login__troubleshooting-list li::before {
  content: '•';
  color: #017439;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-login__list-strong {
  font-weight: bold;
  color: #017439;
}

/* Security Section */
.page-login__security-section {
  padding: 60px 0;
  background-color: #017439; /* Dark background */
  color: #ffffff; /* Light text */
  text-align: center;
}

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

.page-login__security-item {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-login__security-item-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-login__security-item-text {
  font-size: 1em;
  color: #555555;
}

.page-login__security-cta {
  margin-top: 50px;
}

.page-login__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  padding: 12px 25px;
  border: 2px solid #017439;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.page-login__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

/* Promotions Section */
.page-login__promotions-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

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

.page-login__promotion-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.page-login__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none;
}

.page-login__promotion-card .page-login__card-title {
  margin-bottom: 10px;
  color: #017439;
}

.page-login__promotion-card .page-login__card-text {
  margin-bottom: 20px;
  color: #555555;
  flex-grow: 1;
}

.page-login__promotion-card .page-login__btn-primary {
  align-self: flex-start;
  margin-top: auto;
}

.page-login__all-promotions-cta {
  margin-top: 50px;
}

/* App Section */
.page-login__app-section {
  padding: 60px 0;
  background-color: #017439; /* Dark background */
  color: #ffffff; /* Light text */
  text-align: center;
}

.page-login__app-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-login__app-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

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

.page-login__app-features li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #ffffff;
  position: relative;
  padding-left: 30px;
}

.page-login__app-features li::before {
  content: '✓';
  color: #FFFF00; /* Yellow checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-login__download-button {
  margin-top: 20px;
}

.page-login__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-login__app-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  filter: none;
}

/* FAQ Section */
.page-login__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-login__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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