/* style/login.css */

/* Custom CSS Variables for this page if needed, but primarily using shared.css variables */
:root {
  --primary-color: #017439; /* Main brand green */
  --secondary-color: #FFFFFF; /* White */
  --login-button-bg: #C30808; /* Red for login/register buttons */
  --login-button-text: #FFFF00; /* Yellow for login/register button text */
  --text-dark: #333333;
  --text-light: #f0f0f0;
  --border-light: #e0e0e0;
}

.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Body background is white from shared.css */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* --- Hero Section (Login Form Area) --- */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 30%, var(--secondary-color) 100%); /* Blend primary and secondary */
  color: var(--text-light); /* Light text on gradient background */
}

.page-login__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-login__hero-image {
  width: 100%;
  max-width: 800px; /* Limit image width */
  margin-bottom: 30px;
}