
html.route-pending body {
  visibility: visible;
}

html.route-ready body {
  visibility: visible;
}
:root {
  --page-bg: #f3f6fc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #20242b;
  --muted: #718096;
  --line: #d8dee8;
  --line-strong: #c6cfdb;
  --primary: #00a9ef;
  --primary-dark: #008fd0;
  --button: #848993;
  --button-disabled: #d9dde3;
  --danger: #c93434;
  --success: #2f9d56;
  --shadow: 0 22px 55px rgba(36, 50, 75, 0.12);
  --radius: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--page-bg);
}

body {
  min-height: 100vh;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 169, 239, 0.24);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

.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;
}

/* Shared forms */
.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #6f7f91;
  font-size: 14px;
  line-height: 1.25;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input,
.select {
  min-height: 48px;
}

.textarea {
  min-height: 132px;
  resize: vertical;
  padding-top: 13px;
  padding-bottom: 13px;
}

.input::placeholder,
.textarea::placeholder {
  color: #9aa6b5;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 169, 239, 0.12);
  outline: none;
}

.form-error,
.status-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}

.status-message.success {
  color: var(--success);
}

.primary-button,
.pill-button {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

.primary-button:hover:not(:disabled),
.pill-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.primary-button:disabled,
.pill-button:disabled {
  cursor: not-allowed;
  background: var(--button-disabled);
  color: #fff;
  transform: none;
}

/* CAPTCHA page */
.captcha-page {
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f3f6fc;
}

.captcha-card {
  width: min(440px, 100%);
  min-height: 300px;
  border: 1px solid #dbe1e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.captcha-card h1 {
  margin: 0 0 17px;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
  color: #050505;
}

.captcha-intro {
  margin: 0 auto 25px;
  max-width: 340px;
  color: #5f6e82;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
}

.hcaptcha-slot {
  min-height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.captcha-card .status-message {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* Appeal page */
.appeal-page {
  min-height: 100vh;
  background: #fff;
}

.appeal-header {
  height: 52px;
  border-bottom: 1px solid #dfe3e8;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: #24272b;
  font-size: 18px;
  font-weight: 700;
}

.back-link {
  border: 0;
  background: transparent;
  padding: 5px 0;
  color: #202328;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.appeal-content {
  padding: 26px 16px 38px;
  max-width: 1180px;
  margin: 0 auto;
}

.appeal-copy {
  max-width: 1110px;
  font-size: 16px;
  line-height: 1.4;
  color: #080808;
}

.appeal-copy p {
  margin: 0 0 9px;
}

.appeal-copy a {
  color: #00a6ed;
  text-decoration: none;
}

.appeal-form {
  margin-top: 28px;
  display: grid;
  gap: 19px;
}

.appeal-help {
  color: #7d8a9a;
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.appeal-note {
  margin: 3px 0 0 15px;
  color: #8794a3;
  font-size: 12px;
}

.appeal-submit-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.appeal-submit {
  min-width: 78px;
  min-height: 38px;
  padding: 0 21px;
  border-radius: 22px;
  background: #0baeea;
  font-size: 13px;
}

/* Details page */
.details-page {
  min-height: 100vh;
  background: #fff;
}

.details-shell {
  width: min(440px, 100%);
  margin: 0;
  padding: 35px 24px 48px;
}

.details-title {
  margin: 0 0 31px;
  max-width: 360px;
  color: #262a30;
  font-size: 29px;
  line-height: 1.22;
  font-weight: 400;
}

.details-kicker {
  margin: 0 0 11px;
  color: #202328;
  font-size: 14px;
  font-weight: 700;
}

.details-form {
  display: grid;
  gap: 27px;
}

.details-form .input,
.details-form .select {
  min-height: 48px;
  border-radius: 6px;
  font-size: 16px;
}

.details-submit {
  width: 100%;
  min-height: 41px;
  border-radius: 24px;
  background: var(--button-disabled);
  font-size: 14px;
  text-transform: uppercase;
}

.details-submit.ready {
  background: var(--primary);
}

.details-legal {
  margin: -17px 12px 0;
  color: #8090a4;
  font-size: 12px;
  line-height: 1.35;
}

.details-legal a,
.details-support-link {
  color: #00a9ef;
  text-decoration: none;
}

.details-support-link {
  display: block;
  margin-top: 31px;
  text-align: center;
  font-size: 14px;
}

/* Browser-like modal */
.details-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 19, 22, 0.74);
  padding: 12px;
}

.details-modal.is-open {
  display: flex;
}

.browser-window {
  width: min(560px, 100%);
  height: min(760px, calc(100vh - 24px));
  border: 1px solid #bfc2c7;
  background: #202020;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-rows: 35px 35px 1fr;
}

.browser-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  background: #1f1f1f;
  color: #fff;
  border-bottom: 1px solid #7a7a7a;
  font-size: 14px;
}

.browser-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #919191;
  background: #292929;
  color: #c9c9c9;
  padding: 0 9px;
  font-size: 14px;
}

.browser-lock {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}

.browser-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

/* Waiting page */
.waiting-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f3f6fc;
  padding: 24px;
}

.waiting-card {
  width: min(480px, 100%);
  border: 1px solid #dbe1e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 42px 34px;
  text-align: center;
}

.waiting-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 22px;
  border: 5px solid #e8edf3;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.waiting-card h1 {
  margin: 0 0 12px;
  font-size: 24px;
}

.waiting-card p {
  margin: 0 auto;
  max-width: 340px;
  color: #6b7888;
  line-height: 1.5;
}

.waiting-session {
  margin-top: 20px !important;
  color: #9aa5b2 !important;
  font-size: 12px;
  word-break: break-all;
}

@media (max-width: 640px) {
  .captcha-page {
    padding: 14px;
  }

  .captcha-card {
    min-height: 0;
    padding: 30px 20px 26px;
  }

  .captcha-intro {
    font-size: 15px;
  }

  .hcaptcha-slot {
    width: 100%;
    overflow: hidden;
  }

  .appeal-content {
    padding-top: 20px;
  }

  .appeal-copy {
    font-size: 15px;
  }

  .appeal-submit-row {
    justify-content: stretch;
  }

  .appeal-submit {
    width: 100%;
  }

  .details-shell {
    width: 100%;
    padding: 35px 24px 40px;
  }

  .details-title {
    font-size: 29px;
  }

  .browser-window {
    height: calc(100vh - 12px);
  }
}


.hcaptcha-slot.is-verifying {
  opacity: 0.55;
  pointer-events: none;
}

.appeal-form .field > label {
  display: block;
  margin-bottom: 7px;
  color: #2b3037;
  font-size: 14px;
  font-weight: 700;
}


/* Presentation-only synthetic verification demos */
.incorrect-details-message {
  margin: -14px 0 18px;
  color: #c93434;
  font-size: 13px;
  line-height: 1.4;
}

.demo-verification-page {
  min-height: 100vh;
  background: #fff;
}

.demo-verification-shell {
  width: min(500px, 100%);
  min-height: 100vh;
  padding: 18px 24px 36px;
  background: #fff;
}

.presentation-notice {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid #e3b341;
  border-radius: 8px;
  background: #fff8df;
  color: #684d00;
  font-size: 13px;
  line-height: 1.45;
}

.presentation-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .045em;
}

.presentation-notice span {
  display: block;
}

.demo-panel {
  padding: 18px 4px 0;
}

.demo-eyebrow {
  margin: 0 0 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.demo-title {
  margin: 0 0 18px;
  color: #20242b;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
}

.demo-title-greeting {
  margin-top: 6px;
}

.demo-copy {
  margin: 0 0 20px;
  color: #303740;
  font-size: 16px;
  line-height: 1.5;
}

.demo-code-box {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px dashed #9ca8b7;
  border-radius: 7px;
  background: #f7f9fc;
}

.demo-code-box span {
  color: #697788;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.demo-code-box code {
  color: #111820;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  overflow-wrap: anywhere;
  user-select: all;
}

.demo-form {
  display: grid;
  gap: 16px;
}

.demo-code-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .02em;
}

.demo-resend-row {
  display: flex;
  justify-content: center;
  min-height: 22px;
}

.demo-link-button {
  border: 0;
  background: transparent;
  color: #00a9ef;
  cursor: pointer;
  font-size: 13px;
}

.demo-link-button:disabled {
  color: #7d8997;
  cursor: default;
}

.demo-expiry {
  margin: -3px 0 0;
  color: #7d8997;
  font-size: 13px;
  text-align: center;
}

.demo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.demo-cancel,
.demo-confirm {
  min-height: 43px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.demo-cancel {
  background: #e6e7ea;
  color: #5d626b;
}

.demo-confirm {
  background: #43aee9;
  color: #fff;
}

.demo-confirm:disabled {
  background: #cbd0d7;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .demo-verification-shell {
    padding: 14px 16px 28px;
  }

  .demo-actions {
    gap: 10px;
  }
}

/* Lokiinc command-only sign-in step */
.loki-login-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(58, 101, 144, .12), transparent 36%),
    linear-gradient(180deg, #0a0e11 0%, #0c1115 100%);
  color: #eef3f8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.loki-login-page a { color: inherit; }

.loki-login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(255,255,255,.018), transparent 18%, transparent 82%, rgba(255,255,255,.012));
}

.loki-login-brand {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(209, 221, 230, .34);
}

.loki-login-logo { width: 48px; height: 48px; flex: 0 0 auto; filter: drop-shadow(0 8px 18px rgba(72, 117, 255, .22)); }
.loki-login-brand-text { font-size: clamp(22px, 2.7vw, 34px); font-weight: 650; letter-spacing: -.02em; }
.loki-login-brand-text strong { color: #94baff; font-weight: 650; }

.loki-login-content {
  width: min(100%, 920px);
  box-sizing: border-box;
  padding: clamp(58px, 8vh, 96px) 40px 40px;
}

.loki-login-panel { position: relative; }
.loki-login-panel[hidden] { display: none !important; }
.loki-login-panel h1 { margin: 0; font-size: clamp(52px, 7vw, 84px); line-height: 1.04; font-weight: 400; letter-spacing: -.045em; }
.loki-login-subtitle { margin: 34px 0 0; color: #e2e7ed; font-size: clamp(25px, 3.5vw, 36px); line-height: 1.35; }
.loki-login-subtitle span { color: #8eb4ff; }

.loki-login-form { margin-top: 72px; }
.loki-login-input {
  width: 100%;
  box-sizing: border-box;
  min-height: 92px;
  border: 1px solid #8a949d;
  border-radius: 10px;
  padding: 0 34px;
  background: rgba(9, 13, 16, .4);
  color: #f5f7fa;
  font: inherit;
  font-size: clamp(24px, 3.3vw, 35px);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.loki-login-input::placeholder { color: #bcc4cc; opacity: 1; }
.loki-login-input:focus { border-color: #9ec0ff; box-shadow: 0 0 0 3px rgba(116, 163, 255, .22); background: rgba(12, 18, 23, .72); }

.loki-login-link { color: #9cbfff !important; text-decoration: none; font-size: clamp(21px, 2.8vw, 30px); font-weight: 650; }
.loki-login-link:hover, .loki-login-link:focus-visible { text-decoration: underline; }
.loki-login-forgot { display: inline-block; margin-top: 26px; }

.loki-login-legal { margin: 78px 0 0; color: #d3d8de; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.55; }
.loki-login-legal a { color: #9cbfff; font-weight: 650; text-decoration: none; }

.loki-login-actions {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}
.loki-login-next {
  min-width: 190px;
  min-height: 74px;
  border: 0;
  border-radius: 999px;
  padding: 0 40px;
  background: linear-gradient(135deg, #b6d1ff, #8fb9ff);
  color: #173e7e;
  font: inherit;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(84, 137, 230, .18);
}
.loki-login-next:hover { filter: brightness(1.04); }
.loki-login-next:disabled { opacity: .6; cursor: progress; }

.loki-login-back {
  width: 46px;
  height: 46px;
  margin: 0 0 18px -8px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #b9c9db;
  cursor: pointer;
}
.loki-login-back:hover { background: rgba(255,255,255,.07); }
.loki-login-back svg { width: 28px; height: 28px; }

.loki-login-account-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(186, 204, 224, .45);
  border-radius: 999px;
  color: #e9eef4;
  background: rgba(255,255,255,.035);
  font-size: clamp(17px, 2.2vw, 22px);
}
.loki-login-password-copy { margin-top: 24px; font-size: clamp(21px, 2.7vw, 28px); }
.loki-login-show-password { margin-top: 24px; display: inline-flex; align-items: center; gap: 12px; color: #d8dfe6; font-size: 20px; cursor: pointer; }
.loki-login-show-password input { width: 20px; height: 20px; accent-color: #9bbfff; }
.loki-login-security-note { margin-top: 44px; padding: 18px 20px; border: 1px solid rgba(148, 186, 255, .22); border-radius: 12px; color: #bac7d4; background: rgba(64, 105, 170, .08); font-size: 17px; line-height: 1.5; }
.loki-login-password-actions { margin-top: 52px; }
.loki-login-status { min-height: 28px; margin: 24px 40px 0; color: #ff9d9d; font-size: 17px; }
.loki-login-status.success { color: #9ce2b4; }


.loki-login-waiting {
  max-width: 780px;
  padding-top: clamp(20px, 4vh, 48px);
}

.loki-login-waiting-spinner {
  width: 76px;
  height: 76px;
  margin: 0 0 42px;
  border: 6px solid rgba(148, 186, 255, .18);
  border-top-color: #9cbfff;
  border-radius: 50%;
  animation: lokiLoginSpin .85s linear infinite;
  box-shadow: 0 0 34px rgba(94, 137, 255, .14);
}

.loki-login-waiting-copy {
  max-width: 700px;
  margin: 36px 0 0;
  color: #bcc7d2;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
}

.loki-login-waiting-bar {
  position: relative;
  width: min(100%, 620px);
  height: 7px;
  margin-top: 56px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 186, 255, .13);
}

.loki-login-waiting-bar span {
  position: absolute;
  inset: 0 auto 0 -38%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #9cbfff, transparent);
  animation: lokiLoginProgress 1.8s ease-in-out infinite;
}

@keyframes lokiLoginSpin {
  to { transform: rotate(360deg); }
}

@keyframes lokiLoginProgress {
  0% { left: -38%; }
  100% { left: 100%; }
}

.loki-login-footer {
  margin-top: auto;
  min-height: 108px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 22px 40px;
  color: #f0f3f6;
  font-size: clamp(17px, 2vw, 23px);
}
.loki-login-footer nav { display: flex; gap: clamp(28px, 5vw, 72px); }
.loki-login-footer a { text-decoration: none; }
.loki-login-footer a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .loki-login-brand { min-height: 70px; padding: 0 22px; gap: 14px; }
  .loki-login-logo { width: 38px; height: 38px; }
  .loki-login-content { padding: 48px 22px 32px; }
  .loki-login-panel h1 { font-size: 54px; }
  .loki-login-subtitle { margin-top: 24px; font-size: 24px; }
  .loki-login-form { margin-top: 52px; }
  .loki-login-input { min-height: 72px; padding: 0 22px; font-size: 23px; }
  .loki-login-legal { margin-top: 54px; font-size: 18px; }
  .loki-login-actions { margin-top: 60px; }
  .loki-login-next { min-width: 140px; min-height: 58px; padding: 0 28px; font-size: 21px; }
  .loki-login-link { font-size: 20px; }
  .loki-login-footer { align-items: flex-start; flex-direction: column; padding: 24px 22px 30px; font-size: 16px; }
  .loki-login-footer nav { width: 100%; justify-content: space-between; gap: 18px; }
  .loki-login-status { margin-left: 22px; margin-right: 22px; }
}


/* Command-only temporary-passcode test additions */
.loki-test-notice {
  margin: 0 0 38px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  border: 1px solid rgba(255, 199, 92, .38);
  border-radius: 12px;
  background: rgba(105, 73, 13, .18);
  color: #f4d99a;
  font-size: 15px;
  line-height: 1.45;
}
.loki-test-notice strong { letter-spacing: .08em; }
.loki-login-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.loki-demo-code {
  margin-top: 30px;
  padding: 16px 20px;
  border: 1px dashed rgba(159, 194, 255, .6);
  border-radius: 12px;
  background: rgba(79, 126, 205, .14);
  color: #cfe0ff;
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 700;
  letter-spacing: .04em;
}
.loki-code-tools { margin-top: 24px; }
.loki-code-input { letter-spacing: .14em; }


/* Demo-passcode v2.3.2: fixed Demo- prefix with a synthetic value only. */
.loki-demo-passcode-field {
  min-height: 76px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(210, 224, 255, .42);
  border-radius: 10px;
  background: rgba(7, 12, 23, .72);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.loki-demo-passcode-field:focus-within {
  border-color: #9fc2ff;
  box-shadow: 0 0 0 2px rgba(109, 140, 255, .2);
}
.loki-demo-passcode-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 22px;
  color: #cfe0ff;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .02em;
  user-select: none;
}
.loki-demo-passcode-input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 22px 0 2px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 23px;
  letter-spacing: .06em;
}
.loki-demo-passcode-input::placeholder { color: rgba(221, 229, 248, .42); }
.loki-demo-passcode-help {
  margin: 16px 0 0;
  color: rgba(220, 228, 247, .72);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .loki-demo-passcode-field { min-height: 72px; }
  .loki-demo-passcode-prefix,
  .loki-demo-passcode-input { font-size: 21px; }
  .loki-demo-passcode-prefix { padding-left: 18px; }
  .loki-demo-passcode-input { padding-right: 18px; }
}
