.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

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

/* Hero Section */
.page-login__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px; /* Adjust as needed */
  background-color: #017439; /* Brand main color for hero background */
  color: #ffffff;
  overflow: hidden;
  padding: 60px 0; /* Normal content padding, not header offset */
}

.page-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
}

.page-login__hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-login__hero-content {
  max-width: 800px;
  margin: 0 auto;
}}