/* style/login.css */

/* Custom colors from requirements */
:root {
  --phdream-primary: #F2C14E; /* Main color */
  --phdream-secondary: #FFD36B; /* Auxiliary color */
  --phdream-card-bg: #111111; /* Card Background */
  --phdream-background: #0A0A0A; /* Background */
  --phdream-text-main: #FFF6D6; /* Main Text */
  --phdream-border: #3A2A12; /* Border */
  --phdream-glow: #FFD36B; /* Glow */
  --phdream-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
}

/* Base styles for the page, assuming a dark body background from shared.css */
.page-login {
  background-color: var(--phdream-background); /* Ensure consistency with theme */
  color: var(--phdream-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* Body padding-top handled by shared.css var(--header-offset) */
}