.page-login {
  /* Base styles for the login page, using BEM for scoping */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.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;
  text-align: center;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  overflow: hidden;
  background-color: #017439; /* Fallback for image */
}