/* GLTIC Auth — Brand CSS Variables */
/* Matches the shared GLTIC design language across all apps */

:root {
    --primary-color: #4f46e5;
    --primary-color-hover: #4338ca;
    --primary-color-light: #6366f1;
    --accent-color: #10b981;
    --accent-color-hover: #059669;

    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-tertiary: #6b7280;
    --border-primary: #e5e7eb;
    --border-secondary: #d1d5db;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

:root[data-theme="dark"] {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-tertiary: #9ca3af;
    --border-primary: #374151;
    --border-secondary: #4b5563;
    --shadow-color: rgba(0, 0, 0, 0.3);
}
