/* ============================================================
   360Score.me — common.css
   Shared shell tokens for standalone HTML pages under /assets.
   Currently used by: login.html
   ============================================================ */

:root {
  --ts-navy:       #011B38;
  --ts-blue:       #3772FF;
  --ts-blue-dk:    #2557e0;
  --ts-green:      #5BC729;
  --ts-gold:       #FDCA40;
  --ts-orange:     #FF4300;
  --ts-red:        #DF2935;
  --ts-mint:       #8FEBD5;
  --ts-text:       #0f172a;
  --ts-muted:      #64748b;
  --ts-border:     #e2e8f0;
  --ts-bg-soft:    #f8fafc;

  /* Sunrise gradient tokens reused from marketing palette */
  --ts-sunrise-1:  #FDCA40;
  --ts-sunrise-2:  #FF8A3D;
  --ts-sunrise-3:  #FF4300;
  --ts-sunrise-wash: linear-gradient(135deg, #FFF8E7 0%, #FFE9D6 45%, #FFD9C2 100%);
}

html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ts-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Brand pill (used on auth backdrop, etc.) */
.ts-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,.85);
  color: var(--ts-navy);
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(1,27,56,.08);
}

/* Generic input icon affordance shared between auth and other forms */
.ts-input-icon { position: relative; }
.ts-input-icon > i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ts-muted); font-size: 16px; pointer-events: none;
}
.ts-input-icon > input.form-control {
  padding-left: 40px;
}

.ts-input-lg {
  height: 48px; font-size: 15px; border-radius: 10px;
  border: 1px solid var(--ts-border);
}
.ts-input-lg:focus {
  border-color: var(--ts-blue);
  box-shadow: 0 0 0 3px rgba(55,114,255,.18);
  outline: none;
}

/* Primary button (Sunrise gradient) */
.btn-ts-primary {
  background: linear-gradient(135deg, var(--ts-sunrise-1), var(--ts-sunrise-3));
  color: #fff !important;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 6px 18px -8px rgba(255,67,0,.55);
}
.btn-ts-primary:hover, .btn-ts-primary:focus {
  color: #fff !important;
  filter: brightness(1.04);
  box-shadow: 0 10px 24px -10px rgba(255,67,0,.7);
  transform: translateY(-1px);
}
.btn-ts-primary[aria-disabled="true"] { opacity: .7; pointer-events: none; }

/* SR-only utility */
.ts-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}