/* Base styles for the login page */
.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text color for light body background */
  background-color: var(--secondary-color, #FFFFFF);
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
}

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

.page-login__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(1, 116, 57, 0.1) 0%, rgba(1, 116, 57, 0) 100%);
}

.page-login__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-login__hero-content {
  max-width: 800px;
  padding: 20px 0;
}

.page-login__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-login__description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-login__login-form-wrapper {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 450px;
  width: 100%;
  box-sizing: border-box;
}

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