/* ========================================
   VARIABLES.CSS - Design Tokens
   (Previously this file was an accidental duplicate
   of style.css — ~28KB loaded twice on every page.
   It's now just the CSS variables auth.css expects.)
   ======================================== */

:root {
    --primary: #111111;
    --secondary: #FFFFFF;
    --accent: #D4AF37;
    --light-bg: #F8F8F8;
    --gray-text: #777777;
    --border-color: #E5E5E5;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
