:root {
    --primary-color: #F2C14E; /* Black Gold - Main */
    --secondary-color: #FFD36B; /* Black Gold - Auxiliary */
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --page-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;

    /* Text colors based on dark background */
    --text-on-dark: #FFF6D6;
    --text-on-light: #333333; /* For elements with light backgrounds */
}

.page-login {
    font-family: Arial, sans-serif;
    color: var(--text-on-dark); /* Default text color for the page, as body is dark */
    background-color: var(--page-bg);
    line-height: 1.6;
}