/* IGS Finance — shares igs-portal's "Warm Premium" palette so it feels
   like the same product family, even though it's a separate deploy. */
:root {
  --ink: #241019;
  --ink-soft: #6b5560;
  --ink-faint: #7f6c74;
  --maroon: #8c2140;
  --maroon-2: #a52a4d;
  --maroon-deep: #5c1329;
  --gold: #d9a441;
  --gold-deep: #b6842a;
  --cream: #fbf7ee;
  --card: #ffffff;
  --line: #efe7d8;
  --bad: #b3413a;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); }

.login-shell {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(190deg, var(--maroon), var(--maroon-deep));
}
.login-card {
  width: 340px; background: var(--card); border-radius: 16px; padding: 30px 28px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.login-card .mark { width: 42px; height: 42px; border-radius: 12px; background: var(--gold); color: var(--maroon-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; }
.login-card h1 { font-size: 18px; margin: 0 0 3px; }
.login-card .sub { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 22px; }
.login-card label { display: block; font-size: 11.5px; font-weight: 700; color: var(--ink-soft); margin: 14px 0 5px; }
.login-card input { width: 100%; padding: 10px 12px; border-radius: 9px; border: 1px solid var(--line); font-size: 14px; }
.login-card input:focus { outline: none; border-color: var(--gold); }
.login-card button { width: 100%; margin-top: 20px; padding: 11px; border: none; border-radius: 9px; background: linear-gradient(120deg, var(--gold), var(--gold-deep)); color: var(--maroon-deep); font-weight: 700; font-size: 14px; cursor: pointer; }
.login-card .err { margin-top: 12px; font-size: 12.5px; color: var(--bad); }

.app-shell { min-height: 100vh; }
.app-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 26px; background: linear-gradient(190deg, var(--maroon), var(--maroon-deep)); color: #fff; }
.app-top .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.app-top .brand .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--gold); color: var(--maroon-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.app-top .who { font-size: 12.5px; opacity: 0.85; }
.app-top button { background: rgba(255,255,255,0.14); color: #fff; border: none; padding: 7px 13px; border-radius: 8px; font-size: 12px; font-weight: 700; cursor: pointer; }
.app-main { max-width: 720px; margin: 60px auto; padding: 0 24px; text-align: center; }
.app-main h2 { font-size: 20px; margin-bottom: 8px; }
.app-main p { color: var(--ink-faint); font-size: 13.5px; line-height: 1.6; }
