// color 
$primary-color: #002a7d;
$black-color: #000;
$white-color: #ffffff;
$secondary-color: #0e82ff;

$gray-light-color: #666;
$light-color: #fafafa;


$bg-color: #e9f0ff;
$bg-color-light: #ededed;



// font size
$font-xs: 0.75rem;   // 12px
$font-sm: 0.875rem;  // 14px
$font-base: 1rem;    // 16px
$font-lg: 1.125rem;  // 18px
$font-xl: 1.25rem;   // 20px
$font-2xl: 1.5rem;   // 24px
$font-3xl: 2rem;     // 32px
$font-4xl: 2.5rem;   // 40px
$font-5xl:  3rem;     // 48px
$font-6xl:  3.75rem;  // 60px


//margin and padding 
$space-0: 0;         // 0px
$space-1: 0.25rem;   // 4px
$space-2: 0.5rem;    // 8px
$space-3: 0.75rem;   // 12px
$space-4: 1rem;      // 16px
$space-5: 1.25rem;   // 20px
$space-6: 1.5rem;    // 24px
$space-8: 2rem;      // 32px
$space-10: 2.5rem;   // 40px
$space-12: 3rem;     // 48px
$space-16: 4rem;     // 64px
$space-20: 5rem;     // 80px
$space-24: 6rem;     // 96px





// form 
$color-success: #10b981;
$color-error: #ef4444;


//border
$border-radius: 1rem; // 6px
$border-default: #d1d5db;

// Transitions & Animations
$transition: all 0.5s ease;

// Spacing variables
$spacing-xs: 0.5rem;
$spacing-xm: 0.75rem;
$spacing-sm: 1rem;
$spacing-md: 2rem;
$spacing-lg: 3rem;
$spacing-xl: 4rem;
$spacing-2xl: 6rem;
$spacing-3xl: 6.5rem;

// Shadows
$shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
$shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -1px rgba(0, 0, 0, 0.06);
$shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);
$shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
  0 10px 10px -5px rgba(0, 0, 0, 0.04);
