.page-login {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

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

.page-login__hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-login__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Custom Text Main */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 40px;
  color: #A7D9B8; /* Custom Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__login-form-wrapper {
  background-color: #11271B; /* Custom Card BG */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #2E7A4E; /* Custom Border */
}

.page-login__form-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: #A7D9B8; /* Custom Text Secondary */
  font-weight: 600;
}

.page-login__form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Custom Text Main */
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: rgba(167, 217, 184, 0.7); /* Lighter version of Text Secondary */
}

.page-login__form-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}

.page-login__forgot-password {
  color: #57E38D; /* Custom Glow */
  text-decoration: none;
  font-size: 0.95em;
}

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

.page-login__btn-primary {
  display: block;
  width: 100%;
  padding: 15px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button Gradient */
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
}

.page-login__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-login__login-button {
  margin-top: 15px;
}

.page-login__register-text {
  text-align: center;
  margin-top: 25px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-login__register-link {
  color: #57E38D; /* Custom Glow */
  text-decoration: none;
  font-weight: 600;
}

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

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

.page-login__benefits-section,
.page-login__security-section,
.page-login__faq-section,
.page-login__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-login__dark-section {
  background-color: #0A4B2C; /* Deep Green for dark sections */
  color: #F2FFF6; /* Custom Text Main */
}

.page-login__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 25px;
  font-weight: 700;
}

.page-login__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary */
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

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

.page-login__benefit-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

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

.page-login__benefit-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #57E38D);
}

.page-login__benefit-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-login__benefit-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Custom Text Secondary */
  line-height: 1.5;
}

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

.page-login__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-login__feature-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-login__feature-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Custom Text Secondary */
  line-height: 1.5;
}

.page-login__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-login__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Custom Text Main */
  font-size: 1.15em;
  font-weight: 600;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

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

.page-login__faq-qtext {
  flex-grow: 1;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Custom Glow */
  transition: transform 0.3s ease;
}

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

.page-login__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 1em;
  line-height: 1.6;
}

.page-login__cta-section {
  background-color: #08160F; /* Custom Background */
  padding: 80px 0;
}

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

.page-login__cta-button {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-login__btn-secondary {
  display: block;
  padding: 15px 25px;
  border-radius: 8px;
  background: transparent;
  color: #F2FFF6; /* Custom Text Main */
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 2px solid #57E38D; /* Custom Glow for border */
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
  box-sizing: border-box;
}

.page-login__btn-secondary:hover {
  background: #57E38D; /* Custom Glow */
  color: #08160F; /* Custom Background */
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-login__hero-content {
    padding: 30px 15px;
  }

  .page-login__login-form-wrapper {
    padding: 30px;
  }

  .page-login__benefits-section,
  .page-login__security-section,
  .page-login__faq-section,
  .page-login__cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-login__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

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

  .page-login__login-form-wrapper {
    padding: 25px;
  }

  .page-login__form-title {
    font-size: 1.5em;
  }

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

  .page-login__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-login__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

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

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

  .page-login__benefit-card,
  .page-login__feature-item {
    padding: 25px;
  }

  .page-login__benefit-title,
  .page-login__feature-title {
    font-size: 1.3em;
  }

  .page-login__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

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

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  /* Mobile responsive image, video, container rules */
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-login__hero-section,
  .page-login__benefits-section,
  .page-login__security-section,
  .page-login__faq-section,
  .page-login__cta-section,
  .page-login__container,
  .page-login__login-form-wrapper,
  .page-login__benefit-card,
  .page-login__feature-item,
  .page-login__faq-item,
  .page-login__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-login__hero-section {
    padding-top: 10px !important;
  }
}