:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000; /* Body background from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
  --button-hover-dark: #0f131a;
  --button-hover-light: #f0f0f0;
}

.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistency, though body handles it */
}

/* Fixed header offset - applied to the first main content section */
.page-login__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Desktop default, mobile handled by shared */
  padding-bottom: 80px;
  background-color: var(--primary-color); /* Dark section */
  color: var(--text-light);
  text-align: center;
  overflow: hidden; /* For hero overlay */
  background-image: url('[GALLERY:hero:1920x1080:onbet,login_page,secure_access,vietnam,dark_theme]');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}