/* style/login.css */

/* Variables */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Deep Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1a1a1a; /* Inherited from shared.css */
  --card-bg-dark: rgba(255, 255, 255, 0.1); /* Light transparent on dark body */
  --border-color-dark: rgba(255, 255, 255, 0.2);
}

/* Base styles for page-login content */
.page-login {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Light text on dark body background */
  background-color: var(--bg-dark); /* Ensure consistency, though body handles this */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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