@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;450;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --surface: #FFFFFF; --surface-2: #FAFAFA; --surface-3: #F4F4F5;
  --line: #ECECEE; --line-2: #F2F2F4; --line-strong: #D4D4D8;
  --ink: #0F0F11; --ink-2: #525258; --ink-3: #82828A; --ink-4: #A8A8AE;
  --brand: #6E5B8C; --brand-2: #5A4A75; --brand-bg: #F8F5FB; --brand-soft: #EDE7F2; --brand-tint: #DDD3E8;
  --positive: #10B981; --positive-soft: #ECFDF5; --positive-tint: #A7F3D0;
  --warn: #D97706; --negative: #DC2626;
  --bg: #FCFCFC;
  --active-bg: #F1EFF2;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --s1: 8px; --s2: 12px; --s3: 16px; --s4: 24px; --s5: 32px; --s6: 48px;
  --page-pad: 32px; --sidebar-w: 240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.mono, .tabular { font-family: var(--font-mono); }
.tabular { font-variant-numeric: tabular-nums; }

.login_root__sc4iE {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s5);
  background: var(--bg);
}

.login_card__NoG7p {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 32px 32px;
}

.login_logo__uuWzc {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.login_title__r1aBc {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}

.login_sub__TGNNI {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0 0 24px;
  line-height: 1.5;
}

.login_form__NY6Qf { margin-top: 4px; }

.login_label__9OzGh {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.login_inputWrap__xEdqg {
  position: relative;
  margin-bottom: 10px;
}

.login_inputIcon__hYvvE {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.login_input__GK8Qo {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 34px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.login_input__GK8Qo:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-bg);
}

.login_input__GK8Qo::placeholder { color: var(--ink-4); }

.login_hint__Ggj7y {
  font-size: 12px;
  color: var(--ink-4);
  margin: 0 0 16px;
}

.login_submit__56LbW {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
  transition: background 150ms ease;
}

.login_submit__56LbW:hover { background: #000; }
.login_submit__56LbW:disabled { background: var(--ink-4); cursor: not-allowed; }

.login_legal__uPMcR {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 24px;
  text-align: center;
}

.login_legal__uPMcR a {
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login_legal__uPMcR a:hover { color: var(--ink); }
