/* style/login.css */

/* General page styling for login */
.page-login {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Section base styles */
.page-login__hero-section,
.page-login__form-section,
.page-login__why-choose-section,
.page-login__benefits-section,
.page-login__promotion-cta-section,
.page-login__guide-section,
.page-login__faq-section,
.page-login__final-cta-section {
  padding: 60px 0;
  text-align: center;
}

/* Specific section backgrounds */
.page-login__card-bg {
  background-color: #11271B; /* Custom Card BG */
}

.page-login__dark-section {
  background-color: #0A4B2C; /* Custom Deep Green, for contrast */
}

/* Hero Section */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-login__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

.page-login__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-login__main-title {
  color: #F2FFF6; /* Custom Text Main */
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__hero-description {
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Section Titles and Descriptions */
.page-login__section-title {
  color: #F2FFF6; /* Custom Text Main */
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__section-description {
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-login__btn-primary,
.page-login__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Ensure buttons don't exceed container */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}