/* style/login.css */

/* Variables for consistent styling */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000000; /* Black */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #1a1a1a; /* A slightly lighter black for contrast */
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
}

.page-login {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css might handle body */
  line-height: 1.6;
}

/* --- Hero Section --- */
.page-login__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  min-height: 600px;
  background-image: url('[GALLERY:hero:1920x1080:king88,login_background,gold_black_abstract]'); /* Using dynamic image */
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  overflow: hidden; /* For mobile overflow safety */
}

.page-login__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}