@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cellivo-bg: hsl(220 14% 96% / 0.3);
  --cellivo-card: #ffffff;
  --cellivo-border: hsl(220 13% 91%);
  --cellivo-border-strong: hsl(220 13% 88%);
  --cellivo-text: hsl(222 47% 11%);
  --cellivo-muted: hsl(220 9% 46%);
  --cellivo-brand: hsl(231 72% 56%);
  --cellivo-brand-soft: hsl(231 72% 56% / 0.1);
  --cellivo-accent: hsl(220 14% 96%);
  --cellivo-success-bg: #ecfdf5;
  --cellivo-success-text: #047857;
  --cellivo-error-bg: #fef2f2;
  --cellivo-error-text: #b91c1c;
  --cellivo-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --cellivo-shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --cellivo-focus-ring: 0 0 0 2px #ffffff, 0 0 0 4px hsl(231 72% 56% / 0.2);
  --cellivo-soft-focus-ring: 0 0 0 2px hsl(231 72% 56% / 0.2);
}

html {
  background: #ffffff;
}

body.cellivo-auth-page {
  margin: 0;
  min-height: 100vh;
  background: var(--cellivo-bg);
  color: var(--cellivo-text);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

body.cellivo-auth-page * {
  box-sizing: border-box;
}

body.cellivo-auth-page button,
body.cellivo-auth-page input {
  font: inherit;
}

body.cellivo-auth-page button,
body.cellivo-auth-page a {
  -webkit-tap-highlight-color: transparent;
}

.cellivo-auth-shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.cellivo-auth-back {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--cellivo-muted);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25;
  padding: 0;
  transition: color 0.2s ease;
}

.cellivo-auth-back:hover {
  color: var(--cellivo-text);
}

.cellivo-auth-back:focus-visible {
  border-radius: 10px;
  box-shadow: var(--cellivo-focus-ring);
  outline: none;
}

.cellivo-auth-back svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.cellivo-auth-wrap {
  width: 100%;
  max-width: 448px;
}

.cellivo-auth-header {
  margin-bottom: 32px;
  text-align: center;
}

.cellivo-auth-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.cellivo-auth-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.cellivo-auth-title,
.cellivo-panel-title,
.cellivo-mail-subject {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0;
}

.cellivo-auth-title {
  margin: 0;
  color: var(--cellivo-text);
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

.cellivo-auth-subtitle {
  margin: 4px 0 0;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cellivo-auth-card {
  border: 1px solid var(--cellivo-border);
  border-radius: 16px;
  background: var(--cellivo-card);
  box-shadow: var(--cellivo-shadow-sm);
  padding: 32px;
}

.cellivo-auth-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cellivo-social-stack,
.cellivo-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cellivo-social-button,
.cellivo-primary-button,
.cellivo-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 0 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cellivo-social-button:focus-visible,
.cellivo-primary-button:focus-visible,
.cellivo-secondary-button:focus-visible {
  box-shadow: var(--cellivo-focus-ring);
  outline: none;
}

.cellivo-social-button {
  gap: 12px;
  border: 1px solid var(--cellivo-border);
  background: #ffffff;
  color: var(--cellivo-text);
}

.cellivo-social-button:hover {
  background: hsl(220 14% 96% / 0.5);
}

.cellivo-social-button.is-disabled {
  cursor: default;
}

.cellivo-social-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cellivo-divider {
  position: relative;
  text-align: center;
}

.cellivo-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid var(--cellivo-border);
  transform: translateY(-50%);
}

.cellivo-divider span {
  position: relative;
  display: inline-block;
  background: var(--cellivo-card);
  padding: 0 12px;
  color: var(--cellivo-muted);
  font-size: 0.75rem;
  line-height: 1;
}

.cellivo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cellivo-signup-panel .cellivo-form {
  gap: 16px;
}

.cellivo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cellivo-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cellivo-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cellivo-label {
  color: var(--cellivo-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
}

.cellivo-link {
  color: var(--cellivo-brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cellivo-link:hover {
  text-decoration: underline;
}

.cellivo-label-row .cellivo-link {
  font-size: 0.75rem;
  line-height: 1;
}

.cellivo-input-wrap {
  position: relative;
}

.cellivo-input-wrap .cellivo-input {
  padding-right: 40px;
}

.cellivo-input,
.cellivo-code-input {
  width: 100%;
  border: 1px solid var(--cellivo-border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--cellivo-text);
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cellivo-input::placeholder,
.cellivo-code-input::placeholder,
.cellivo-country-picker__search::placeholder {
  color: var(--cellivo-muted);
}

.cellivo-input:focus,
.cellivo-code-input:focus {
  border-color: var(--cellivo-brand);
  box-shadow: var(--cellivo-focus-ring);
}

.cellivo-input.is-compact {
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.cellivo-input.is-compact:focus {
  border-color: transparent;
  box-shadow: none;
}

.cellivo-input-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cellivo-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.cellivo-input-toggle:hover {
  color: var(--cellivo-text);
}

.cellivo-input-toggle:focus-visible {
  box-shadow: var(--cellivo-focus-ring);
  outline: none;
}

.cellivo-input-toggle svg {
  width: 16px;
  height: 16px;
}

.cellivo-primary-button {
  border: 1px solid var(--cellivo-text);
  background: var(--cellivo-text);
  color: #ffffff;
}

.cellivo-primary-button:hover {
  border-color: hsl(222 47% 11% / 0.92);
  background: hsl(222 47% 11% / 0.92);
}

.cellivo-secondary-button {
  border: 1px solid var(--cellivo-border);
  background: #ffffff;
  color: var(--cellivo-text);
}

.cellivo-secondary-button:hover {
  background: var(--cellivo-accent);
}

.cellivo-primary-button[disabled],
.cellivo-secondary-button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.cellivo-auth-footer {
  margin-top: 24px;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.cellivo-auth-footer .cellivo-link {
  font-weight: 500;
}

.cellivo-notice {
  display: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cellivo-notice.is-visible {
  display: block;
}

.cellivo-notice.is-error {
  background: var(--cellivo-error-bg);
  color: var(--cellivo-error-text);
}

.cellivo-notice.is-success {
  background: var(--cellivo-success-bg);
  color: var(--cellivo-success-text);
}

.cellivo-toast-region {
  position: fixed;
  z-index: 99999;
  top: 16px;
  right: 16px;
  display: flex;
  width: min(460px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.cellivo-toast {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--cellivo-border);
  border-left-width: 5px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--cellivo-shadow-md);
  color: var(--cellivo-text);
  font-size: 0.9375rem;
  line-height: 1.5;
  pointer-events: auto;
  transform: translateY(-8px);
  opacity: 0;
  animation: cellivo-toast-in 0.18s ease forwards;
}

.cellivo-toast__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 14px 16px 16px;
}

.cellivo-toast__message {
  margin: 0;
  min-width: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  text-wrap: pretty;
  white-space: normal;
  overflow-wrap: anywhere;
}

.cellivo-toast__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.72;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.cellivo-toast__close:hover {
  background: rgba(15, 23, 42, 0.08);
  opacity: 1;
}

.cellivo-toast__close:focus-visible {
  box-shadow: var(--cellivo-soft-focus-ring);
  outline: none;
  opacity: 1;
}

.cellivo-toast__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  transform-origin: left center;
  background: currentColor;
  opacity: 0.28;
}

.cellivo-toast.is-success {
  border-left-color: var(--cellivo-success-text);
  background: var(--cellivo-success-bg);
  color: var(--cellivo-success-text);
}

.cellivo-toast.is-error {
  border-left-color: var(--cellivo-error-text);
  background: var(--cellivo-error-bg);
  color: var(--cellivo-error-text);
}

.cellivo-toast.is-leaving {
  animation: cellivo-toast-out 0.18s ease forwards;
}

.cellivo-toast:hover {
  box-shadow: 0 14px 28px -10px rgba(15, 23, 42, 0.2), 0 10px 18px -12px rgba(15, 23, 42, 0.18);
}

.cellivo-toast:focus-visible {
  box-shadow: var(--cellivo-focus-ring), var(--cellivo-shadow-md);
  outline: none;
}

@media (max-width: 640px) {
  .cellivo-toast-region {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 24px);
  }

  .cellivo-toast__content {
    gap: 10px;
    padding: 12px 14px 14px;
  }

  .cellivo-toast__message {
    font-size: 0.875rem;
  }
}

@keyframes cellivo-toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cellivo-toast-out {
  to {
    transform: translateY(-8px);
    opacity: 0;
  }
}

.cellivo-auth-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.cellivo-step {
  display: flex;
  align-items: center;
}

.cellivo-step__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cellivo-step__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--cellivo-accent);
  color: var(--cellivo-muted);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cellivo-step__bubble svg {
  width: 16px;
  height: 16px;
}

.cellivo-step__label {
  color: var(--cellivo-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.cellivo-step.is-active .cellivo-step__bubble {
  background: var(--cellivo-text);
  color: #ffffff;
}

.cellivo-step.is-complete .cellivo-step__bubble {
  background: var(--cellivo-brand);
  color: #ffffff;
}

.cellivo-step.is-active .cellivo-step__label,
.cellivo-step.is-complete .cellivo-step__label {
  color: var(--cellivo-text);
}

.cellivo-step__connector {
  width: 80px;
  height: 1px;
  margin: 0 8px 20px;
  background: var(--cellivo-border);
  transition: background-color 0.2s ease;
}

.cellivo-step__connector.is-complete {
  background: var(--cellivo-brand);
}

.cellivo-signup-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.cellivo-signup-panel.is-active {
  display: flex;
}

.cellivo-panel-header {
  text-align: center;
}

.cellivo-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cellivo-brand-soft);
  color: var(--cellivo-brand);
  margin-bottom: 16px;
}

.cellivo-panel-icon svg {
  width: 24px;
  height: 24px;
}

.cellivo-panel-title {
  margin: 0;
  color: var(--cellivo-text);
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
}

.cellivo-panel-subtitle {
  margin: 4px 0 0;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cellivo-phone-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--cellivo-border);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cellivo-phone-field:focus-within {
  border-color: var(--cellivo-brand);
  box-shadow: var(--cellivo-soft-focus-ring);
}

.cellivo-country-picker {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.cellivo-country-picker__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 72px;
  min-height: 46px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: transparent;
  color: var(--cellivo-text);
  cursor: pointer;
  padding: 0 12px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.cellivo-country-picker__trigger:hover {
  background: hsl(220 14% 96% / 0.4);
}

.cellivo-country-picker__trigger:focus-visible {
  box-shadow: inset 0 0 0 2px hsl(231 72% 56% / 0.15);
  outline: none;
}

.cellivo-country-picker.is-locked .cellivo-country-picker__trigger {
  cursor: not-allowed;
  opacity: 0.75;
}

.cellivo-country-picker.is-locked .cellivo-country-picker__trigger svg {
  display: none;
}

.cellivo-country-picker__flag {
  font-size: 1.25rem;
  line-height: 1;
}

.cellivo-country-picker__divider {
  width: 1px;
  height: 24px;
  background: var(--cellivo-border);
}

.cellivo-phone-field__body {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 12px;
}

.cellivo-phone-field__dial {
  flex: 0 0 auto;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.cellivo-country-picker__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: 320px;
  border: 1px solid var(--cellivo-border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--cellivo-shadow-md);
  overflow: hidden;
}

.cellivo-country-picker__panel.is-hidden,
.is-hidden {
  display: none !important;
}

.cellivo-country-picker__search-shell {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cellivo-border);
  padding: 0 12px;
}

.cellivo-country-picker__search-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--cellivo-muted);
  opacity: 0.5;
  margin-right: 8px;
}

.cellivo-country-picker__search {
  width: 100%;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 12px 0;
  color: var(--cellivo-text);
  font-size: 0.9375rem;
  outline: none;
}

.cellivo-country-picker__list {
  max-height: 300px;
  overflow-y: auto;
}

.cellivo-country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--cellivo-text);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.cellivo-country-option:hover,
.cellivo-country-option:focus-visible {
  background: var(--cellivo-accent);
  outline: none;
}

.cellivo-country-option__flag {
  font-size: 1.25rem;
  line-height: 1;
}

.cellivo-country-option__content {
  min-width: 0;
  flex: 1 1 auto;
}

.cellivo-country-option__label {
  display: block;
  color: var(--cellivo-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
}

.cellivo-country-option__meta {
  display: block;
  color: var(--cellivo-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.cellivo-country-option__check {
  color: var(--cellivo-brand);
  opacity: 0;
}

.cellivo-country-option.is-selected .cellivo-country-option__check {
  opacity: 1;
}

.cellivo-code-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cellivo-verification-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cellivo-verification-group + .cellivo-verification-group {
  margin-top: 18px;
}

.cellivo-verification-label {
  color: var(--cellivo-muted);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.cellivo-code-input {
  width: 44px;
  height: 48px;
  border-radius: 12px;
  padding: 0;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.cellivo-inline-text {
  color: var(--cellivo-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.cellivo-inline-text .cellivo-link {
  border: 0;
  background: transparent;
  color: var(--cellivo-brand);
  cursor: pointer;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  padding: 0;
}

.cellivo-debug-code {
  display: none;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 12px 14px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cellivo-debug-code.is-visible {
  display: block;
}

.cellivo-actions {
  display: flex;
  gap: 12px;
}

.cellivo-actions > * {
  flex: 1 1 0;
}

.cellivo-benefits {
  border-top: 1px solid var(--cellivo-border);
  margin-top: 24px;
  padding-top: 20px;
}

.cellivo-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.cellivo-benefit svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--cellivo-brand);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cellivo-mail-wrap {
  width: 100%;
  max-width: 880px;
}

.cellivo-mail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cellivo-mail-card {
  border: 1px solid var(--cellivo-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--cellivo-shadow-sm);
  padding: 24px;
}

.cellivo-mail-empty {
  margin: 0;
  color: var(--cellivo-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cellivo-mail-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cellivo-mail-subject {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
}

.cellivo-mail-recipient,
.cellivo-mail-time {
  margin: 0;
  color: var(--cellivo-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cellivo-mail-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.cellivo-mail-code__label {
  font-size: 0.8125rem;
  font-weight: 600;
}

.cellivo-mail-code strong {
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.cellivo-mail-body {
  margin: 0;
  border-radius: 12px;
  background: #f9fafb;
  color: var(--cellivo-text);
  font-family: ui-monospace, SFMono-Regular, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  overflow-x: auto;
  padding: 16px;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 640px) {
  .cellivo-auth-shell {
    padding: 72px 16px 40px;
  }

  .cellivo-auth-back {
    top: 24px;
    left: 16px;
  }

  .cellivo-auth-card {
    padding: 24px;
  }

  .cellivo-grid-2 {
    grid-template-columns: 1fr;
  }

  .cellivo-step__connector {
    width: 48px;
  }

  .cellivo-country-picker__panel {
    width: min(320px, calc(100vw - 48px));
  }

  .cellivo-mail-card {
    padding: 20px;
  }

  .cellivo-mail-meta {
    flex-direction: column;
  }

  .cellivo-actions {
    flex-direction: column;
  }
}

/* Cellivo auth cascade guard */
body.cellivo-auth-page input.cellivo-input:not(.is-compact),
body.cellivo-auth-page input.cellivo-code-input {
  width: 100% !important;
  border: 1px solid var(--cellivo-border) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: var(--cellivo-text) !important;
  box-shadow: none !important;
  outline: none !important;
}

body.cellivo-auth-page input.cellivo-input:not(.is-compact):focus,
body.cellivo-auth-page input.cellivo-code-input:focus {
  border-color: var(--cellivo-brand) !important;
  box-shadow: 0 0 0 1px var(--cellivo-brand) !important;
  outline: none !important;
}

body.cellivo-auth-page input.cellivo-input.is-compact {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

body.cellivo-auth-page input.cellivo-input.is-compact:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

body.cellivo-auth-page .cellivo-phone-field {
  border: 1px solid var(--cellivo-border) !important;
}

body.cellivo-auth-page .cellivo-phone-field:focus-within {
  border-color: var(--cellivo-brand) !important;
  box-shadow: 0 0 0 1px var(--cellivo-brand) !important;
}

body.cellivo-auth-page .cellivo-auth-back,
body.cellivo-auth-page .cellivo-auth-back:hover,
body.cellivo-auth-page .cellivo-auth-back:active {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--cellivo-muted) !important;
}

body.cellivo-auth-page .cellivo-auth-back:hover {
  color: var(--cellivo-text) !important;
}

body.cellivo-auth-page .cellivo-auth-back:focus-visible {
  background: transparent !important;
  box-shadow: var(--cellivo-focus-ring) !important;
  color: var(--cellivo-text) !important;
  outline: none !important;
}
