| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | |
| background: #f8fafc; | |
| color: #1e293b; | |
| line-height: 1.5; | |
| } | |
| button { | |
| font-family: inherit; | |
| cursor: pointer; | |
| } | |
| input { | |
| font-family: inherit; | |
| } | |
| :root { | |
| --primary: #6366f1; | |
| --primary-hover: #4f46e5; | |
| --success: #10b981; | |
| --error: #ef4444; | |
| --gray-50: #f8fafc; | |
| --gray-100: #f1f5f9; | |
| --gray-200: #e2e8f0; | |
| --gray-300: #cbd5e1; | |
| --gray-400: #94a3b8; | |
| --gray-500: #64748b; | |
| --gray-600: #475569; | |
| --gray-700: #334155; | |
| --gray-800: #1e293b; | |
| --gray-900: #0f172a; | |
| } | |