.page-login {
  background-color: var(--background-color, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-login__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--card-bg, #11271B);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-login__main-title {
  font-size: 48px;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__description {
  font-size: 18px;
  color: var(--text-secondary, #A7D9B8);
  max-width: 700px;
  margin: 0 auto;
}

.page-login__hero-image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: -30px; /* Overlap slightly with content for visual flow */
  z-index: 1;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-login__form-section {
  padding: 80px 0;
  background-color: var(--background-color, #08160F);
  text-align: center;
}

.page-login__form-title {
  font-size: 36px;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-login__login-form {
  max-width: 450px;
  margin: 0 auto;
  background-color: var(--card-bg, #11271B);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color, #2E7A4E);
}

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

.page-login__form-label {
  display: block;
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 8px;
  font-weight: 600;
}

.page-login__form-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  background-color: #0A4B2C; /* Deep Green for input background */
  color: var(--text-main, #F2FFF6);
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__form-input::placeholder {
  color: var(--text-secondary, #A7D9B8);
  opacity: 0.7;
}

.page-login__form-input:focus {
  border-color: var(--glow-color, #57E38D);
  outline: none;
  box-shadow: 0 0 0 3px rgba(87, 227, 141, 0.3);
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 15px;
}

.page-login__remember-me {
  display: flex;
  align-items: center;
}

.page-login__checkbox {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color, #11A84E);
}

.page-login__checkbox-label {
  color: var(--text-secondary, #A7D9B8);
}

.page-login__forgot-password {
  color: var(--glow-color, #57E38D);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-login__forgot-password:hover {
  color: var(--gold-color, #F2C14E);
  text-decoration: underline;
}

.page-login__submit-button {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.page-login__submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-login__register-link-wrapper {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--divider-color, #1E3A2A);
}

.page-login__register-text {
  font-size: 16px;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-login__register-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color, #11A84E);
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.page-login__register-button:hover {
  background-color: var(--deep-green, #0A4B2C);
  transform: translateY(-1px);
}

.page-login__social-login {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--divider-color, #1E3A2A);
}

.page-login__social-login-text {
    font-size: 16px;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 20px;
}

.page-login__social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-login__social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--deep-green, #0A4B2C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-login__social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-login__social-icon--facebook {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15h-3v-3h3V9c0-3.31 2.72-6 6-6 1.76 0 3.3.48 3.3 0V7h-2c-1.33 0-2 .67-2 2v3h4l-1 3h-3v6.95c5.05-.5 9-4.76 9-9.95z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}
}