/* style/login.css */

/* Base styles for the page content, ensuring text contrast against the dark body background */
.page-login {
  color: #FFF6D6; /* Text Main color for overall page content */
  background-color: #0A0A0A; /* Background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Section styling */
.page-login__hero-section,
.page-login__why-choose-section,
.page-login__how-to-login-section,
.page-login__troubleshooting-section,
.page-login__register-cta-section,
.page-login__about-pagcor-section,
.page-login__faq-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure content doesn't spill */
}

/* Specific padding for the first section, not using --header-offset */
.page-login__hero-section {
  padding-top: 10px; /* Small top padding as per rules */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added padding for smaller screens */
  box-sizing: border-box;
}

.page-login__section-title {
  font-size: 2.8em;
  color: #FFD36B; /* Glow color for titles */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

/* Hero Section Specifics */
.page-login__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-login__hero-content {
  padding: 40px;
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-login__main-title {
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  margin-bottom: 20px;
  line-height: 1.2;
  /* H1 font-size not fixed */
  font-size: clamp(2em, 4vw, 3em); /* Using clamp as per guideline if size needs restriction */
}

.page-login__hero-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-login__login-form-wrapper {
  background-color: #0A0A0A; /* Background color */
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border color */
}

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

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