.page-login {
  color: #ffffff; /* Default text color for sections on dark body background */
  background-color: #000; /* Ensure main content background is black to match body */
}

.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background-color: #000; /* Ensure this section matches body background */
  color: #ffffff;
  min-height: 70vh;
}

.page-login__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 10;
}

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

.page-login__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-login__login-card {
  background: #FFFFFF; /* Custom color rule for background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  color: #333333; /* Dark text for white background */
  text-align: left;
}

.page-login__card-title {
  font-size: 2em;
  margin-bottom: 30px;
  color: #017439;
  text-align: center;
}

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