:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #111827;
  background: #fff;
  --blue: #0b6ff4;
  --blue-dark: #0756cf;
  --ink: #101625;
  --muted: #65718a;
  --field: #edf4ff;
}

* { box-sizing: border-box; }
.login-body { min-height: 100vh; margin: 0; background: #fff; }
.access-page { min-height: 100vh; display: grid; grid-template-columns: minmax(480px, 1.05fr) minmax(480px, .95fr); }

.access-brand-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0757d8 0%, #0c75ed 63%, #3d6bb0 100%);
}
.access-brand-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,31,96,.08)); pointer-events: none; }
.brand-orbit { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; pointer-events: none; }
.brand-orbit::before { content: ""; position: absolute; inset: 62px; border: 72px solid rgba(255,255,255,.055); border-radius: inherit; }
.brand-orbit-top { width: 630px; height: 630px; left: -340px; top: -275px; }
.brand-orbit-bottom { width: 505px; height: 505px; right: -235px; bottom: -265px; }
.access-brand-content { position: relative; z-index: 1; width: min(560px, calc(100% - 96px)); margin: 0 auto; }
.access-brand-badge { display: inline-flex; align-items: center; min-height: 36px; padding: 0 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.04); font-size: 12px; font-weight: 800; letter-spacing: .07em; }
.access-brand-mark { width: 90px; height: 90px; margin: 62px 0 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 26px; background: rgba(255,255,255,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); font-size: 25px; font-weight: 850; letter-spacing: -.04em; }
.access-brand-content h2 { margin: 0; font-size: clamp(54px, 5vw, 76px); line-height: .98; letter-spacing: -.06em; }
.access-brand-content p { max-width: 535px; margin: 36px 0 0; color: rgba(255,255,255,.9); font-size: 19px; line-height: 1.6; }

.access-panel { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 56px; background: #fff; }
.access-form-wrap { width: min(100%, 488px); }
.access-form-wrap-wide { width: min(100%, 620px); }
.mobile-access-brand { display: none; }
.access-eyebrow { margin: 0 0 18px; color: #0969ed; font-size: 12px; font-weight: 850; letter-spacing: .15em; }
.access-form-wrap h1 { margin: 0; color: var(--ink); font-size: clamp(34px, 3vw, 43px); line-height: 1.08; letter-spacing: -.045em; }
.access-intro { margin: 18px 0 32px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.access-form-wrap form { margin-top: 8px; }
.access-form-wrap label { display: block; margin: 20px 0 9px; color: #26334a; font-size: 13px; font-weight: 750; }
.access-form-wrap input { width: 100%; height: 64px; padding: 0 16px; border: 1px solid #d6e0ef; border-radius: 13px; outline: 0; color: var(--ink); background: var(--field); font: inherit; transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.access-form-wrap input:hover { border-color: #bfcee3; }
.access-form-wrap input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(11,111,244,.12); }
.access-form-wrap button { width: 100%; height: 64px; margin-top: 18px; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 16px; border: 0; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--blue-dark), #0f80fb); box-shadow: 0 15px 32px rgba(9,105,237,.22); font: 800 16px inherit; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.access-form-wrap button:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(9,105,237,.28); }
.access-form-wrap button:focus-visible { outline: 3px solid rgba(11,111,244,.28); outline-offset: 3px; }
.access-form-wrap button:disabled { opacity: .55; cursor: not-allowed; }
.setup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
.password-hint { margin: 10px 0 0; color: #6d788d; font-size: 12px; line-height: 1.5; }
.access-message { margin: -12px 0 22px; padding: 12px 14px; border-radius: 10px; font-size: 13px; line-height: 1.5; }
.access-error { border: 1px solid #f2c6c1; color: #9c342c; background: #fff1ef; }
.access-warning { border: 1px solid #f0d38b; color: #745507; background: #fff9e8; }
.access-privacy { margin: 27px 0 0; padding-top: 20px; border-top: 1px solid #e4eaf3; color: #6e788c; font-size: 12px; line-height: 1.55; }

@media (max-width: 1050px) {
  .access-page { grid-template-columns: .9fr 1.1fr; }
  .access-brand-content { width: min(440px, calc(100% - 64px)); }
  .access-panel { padding: 42px; }
  .access-brand-content h2 { font-size: 56px; }
}

@media (max-width: 820px) {
  .login-body { background: linear-gradient(145deg, #0757d8, #0d79ef 210px, #eff4fb 210px); }
  .access-page { min-height: 100vh; display: block; padding: 38px 18px; }
  .access-brand-panel { display: none; }
  .access-panel { min-height: 0; padding: 0; background: transparent; }
  .access-form-wrap, .access-form-wrap-wide { width: min(100%, 590px); padding: 30px 26px; border: 1px solid rgba(214,224,239,.85); border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(20,47,91,.17); }
  .mobile-access-brand { display: flex; align-items: center; gap: 11px; margin: 0 0 30px; color: #172033; }
  .mobile-access-brand span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--blue-dark), #1182fb); font-size: 14px; font-weight: 850; }
  .mobile-access-brand strong { font-size: 16px; }
  .access-form-wrap h1 { font-size: 34px; }
  .access-form-wrap input, .access-form-wrap button { height: 57px; }
}

@media (max-width: 600px) {
  .access-page { padding: 24px 12px; }
  .access-form-wrap, .access-form-wrap-wide { padding: 27px 21px; border-radius: 19px; }
  .setup-grid { grid-template-columns: 1fr; }
  .access-intro { margin-bottom: 24px; }
}
