:root { color-scheme: light; --ink: #16212b; --muted: #70808d; --line: #e1e8eb; --paper: #f6f8f7; --white: #fff; --green: #166b5a; --green-dark: #0d4f43; --mint: #e4f1eb; --yellow: #f0b849; --red: #bd554b; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
* { box-sizing: border-box; } body { margin: 0; background: var(--paper); color: var(--ink); } button, input { font: inherit; } button { cursor: pointer; } .layout { min-height: 100vh; display: flex; } .sidebar { width: 250px; background: #102a2a; color: #e8f2ec; display: flex; flex-direction: column; padding: 28px 18px 20px; } .brand { display: flex; gap: 11px; align-items: center; padding: 0 10px 38px; } .brand strong { display: block; font-size: 17px; letter-spacing: .02em; } .brand small { display: block; color: #8eb2a8; font-size: 11px; margin-top: 2px; } .brand-mark { width: 36px; height: 36px; border-radius: 10px; background: #d0ebde; color: #143f3b; display: grid; place-items: center; font-weight: 800; font-size: 18px; } nav { display: grid; gap: 6px; } .nav-item { border: 0; background: transparent; color: #a8c1b9; text-align: left; padding: 12px 12px; border-radius: 7px; display: flex; gap: 11px; align-items: center; font-size: 13px; } .nav-item span { width: 18px; color: #d4e9df; text-align: center; } .nav-item:hover, .nav-item.active { color: white; background: #19433d; } .sidebar-foot { margin-top: auto; color: #8eb2a8; font-size: 12px; line-height: 1.7; padding: 12px; border-top: 1px solid #27504a; } .sidebar-foot small { color: #668c82; } .online-dot { display: inline-block; width: 7px; height: 7px; background: #78d4a6; border-radius: 50%; margin-right: 6px; }
.content { width: min(1180px, 100%); padding: 38px 48px 72px; } .topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 42px; } .eyebrow { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .16em; } h1 { font-family: Georgia, serif; font-size: 38px; font-weight: 400; margin: 7px 0 0; letter-spacing: 0; } .top-actions { display: flex; gap: 10px; align-items: center; } .user-pill { font-size: 12px; border: 1px solid var(--line); background: var(--white); border-radius: 20px; padding: 9px 13px; color: var(--muted); } .icon-button { border: 1px solid var(--line); background: var(--white); color: var(--ink); width: 34px; height: 34px; border-radius: 7px; } .welcome-row { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; } .section-title { font-family: Georgia, serif; font-size: 27px; font-weight: 400; margin: 0 0 5px; } .muted { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0; } .primary, .secondary { border: 0; border-radius: 6px; padding: 11px 16px; font-size: 13px; font-weight: 700; } .primary { background: var(--green); color: white; } .primary:hover { background: var(--green-dark); } .secondary { background: var(--white); border: 1px solid var(--line); color: var(--green-dark); } .metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; } .metrics > div { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; } .metrics span, .metrics small { display: block; color: var(--muted); font-size: 12px; } .metrics strong { display: block; font-family: Georgia, serif; font-size: 27px; font-weight: 400; margin: 10px 0 5px; } .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; } .panel-card { background: var(--white); border: 1px solid var(--line); border-radius: 7px; padding: 23px; } .card-heading h2 { font-size: 16px; font-weight: 700; margin: 0 0 4px; } .card-heading p { color: var(--muted); font-size: 12px; margin: 0 0 22px; } .connection-row { display: flex; justify-content: space-between; align-items: center; } .status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; } .dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--yellow); } .dot.ok { background: #40a777; } .dot.warn { background: var(--yellow); } .text-button { border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 700; } .steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: var(--muted); font-size: 12px; } .steps li:before { content: '○'; display: inline-block; width: 24px; color: #a9b7b9; } .steps li.done:before { content: '✓'; color: #40a777; } .steps li.current { color: var(--ink); font-weight: 700; } .quick-links { display: grid; gap: 12px; } .quick-links a { color: var(--green); text-decoration: none; font-size: 13px; font-weight: 700; } .page-intro { margin: -22px 0 24px; } .settings-form { display: grid; gap: 16px; max-width: 650px; } label { display: grid; gap: 7px; color: #42515b; font-size: 12px; font-weight: 700; } input { width: 100%; padding: 12px 13px; border: 1px solid #d5e0e1; border-radius: 5px; background: #fbfcfc; color: var(--ink); outline: none; } input:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--mint); } .form-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; } .form-actions { display: flex; gap: 10px; align-items: center; margin-top: 5px; } .form-feedback { color: var(--green); font-size: 12px; margin: 0; min-height: 18px; } .copy-field { display: flex; gap: 9px; align-items: center; background: #f5f8f7; border: 1px solid var(--line); border-radius: 5px; padding: 10px 10px 10px 13px; } code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #47615c; font-size: 12px; flex: 1; } .flow-list { display: grid; gap: 10px; max-width: 760px; } .flow-list > div { background: var(--white); border: 1px solid var(--line); border-radius: 7px; padding: 17px 20px; display: grid; grid-template-columns: 190px 1fr 1fr; align-items: center; gap: 10px; } .flow-list strong { font-size: 13px; } .flow-list span:last-child { color: var(--muted); font-size: 12px; }
.auth-shell { min-height: 100vh; display: grid; grid-template-columns: minmax(340px, 520px) 1fr; background: #edf3f0; } .auth-panel { align-self: center; justify-self: end; width: min(100%, 520px); padding: 60px; background: var(--white); min-height: 100vh; display: flex; flex-direction: column; justify-content: center; } .auth-panel h1 { font-size: 42px; line-height: 1.06; margin: 17px 0 14px; } .auth-panel form { display: grid; gap: 16px; margin-top: 30px; } .auth-preview { padding: 12vw 10vw; background: #17453d; color: #eaf4ef; display: flex; flex-direction: column; justify-content: end; } .auth-preview strong { font-family: Georgia, serif; font-size: clamp(44px, 7vw, 88px); line-height: .95; font-weight: 400; margin: 20px 0; } .preview-kicker { color: #a8d4bf; letter-spacing: .16em; font-size: 11px; font-weight: 800; } .auth-preview p { color: #a8c8bd; max-width: 300px; font-size: 14px; } .form-error { color: var(--red); font-size: 12px; min-height: 16px; }
@media (max-width: 800px) { .sidebar { width: 205px; } .content { padding: 28px 24px 50px; } .metrics, .grid-2 { grid-template-columns: 1fr; } .auth-shell { grid-template-columns: 1fr; } .auth-preview { display: none; } .auth-panel { justify-self: stretch; width: 100%; padding: 36px 24px; } .flow-list > div { grid-template-columns: 1fr; gap: 6px; } }
@media (max-width: 560px) { .layout { display: block; } .sidebar { width: 100%; padding: 16px; } .brand { padding-bottom: 18px; } nav { display: flex; overflow-x: auto; } .nav-item { white-space: nowrap; } .sidebar-foot { display: none; } .content { padding: 24px 16px 40px; } .topbar { margin-bottom: 30px; } .top-actions .user-pill { display: none; } h1 { font-size: 31px; } .welcome-row { display: grid; gap: 17px; } .form-grid { grid-template-columns: 1fr; } }
.scanner-box { display: grid; justify-items: start; gap: 14px; }
.scanner-status { color: var(--muted); font-size: 13px; }
.scanner-status.connected { color: var(--green); font-weight: 700; }
.qr-frame { width: 240px; height: 240px; border: 1px dashed #bed0ca; background: #f7faf8; display: grid; place-items: center; padding: 12px; }
.qr-frame img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.qr-frame span { color: var(--muted); font-size: 12px; text-align: center; }
.pairing-code { color: var(--green-dark); min-height: 18px; }
