.page-login {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

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

.page-login__content-centered {
  text-align: center;
}

.page-login__section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H2 */
  color: #F2C14E; /* Primary color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-login__section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive H3 */
  color: #FFD36B; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__paragraph {
  margin-bottom: 15px;
  color: #FFF6D6; /* Text Main */
}

.page-login__highlight {
  color: #FFD36B; /* Glow color */
  font-weight: bold;
}

.page-login__text-link {
  color: #F2C14E; /* Primary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-login__text-link:hover {
  color: #FFD36B; /* Auxiliary color on hover */
  text-decoration: underline;
}

/* Buttons */
.page-login__btn-primary,
.page-login__btn-secondary,
.page-login__login-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box; /* Include padding in width */
  max-width: 100%; /* Ensure responsiveness */
}

.page-login__btn-primary,
.page-login__login-button {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-login__btn-primary:hover,
.page-login__login-button:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E8B32A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-login__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Primary color */
  border: 2px solid #F2C14E; /* Border color */
  box-shadow: 0 2px 10px rgba(242, 193, 78, 0.2);
}

.page-login__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  color: #FFD36B; /* Auxiliary color on hover */
  border-color: #FFD36B; /* Glow color on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-login__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.page-login__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A; /* Background */
  position: relative;
  overflow: hidden;
}

.page-login__hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-login__main-title {
  font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive H1 */
  color: #F2C14E; /* Primary color */
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-login__hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-login__login-form-container {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  border: 1px solid #3A2A12; /* Border */
}

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

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  color: #FFF6D6; /* Text Main */
  font-weight: bold;
  font-size: 0.95rem;
}