/* MTA Signering — shared styles (light theme pages) */

:root {
  --accent: #AA5D26;
  --accent-light: #C68E4D;
  --accent-bg: rgba(170,93,38,0.06);
  --bg: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-input: #F5F5F5;
  --text: #1A1A2E;
  --text-body: #444;
  --text-muted: #888;
  --text-label: #666;
  --border: #E2E2E2;
  --success: #19C37D;
  --success-bg: rgba(25,195,125,0.06);
  --error: #DC2626;
  --error-bg: rgba(220,38,38,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 40px -12px rgba(170,93,38,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  min-height: 100vh;
}
