/* [project]/src/app/login/login.css [app-client] (css) */
.login-page {
  --login-primary: #3b82f6;
  --login-primary-dark: #2563eb;
  --login-primary-glow: #3b82f659;
  --login-accent: #6366f1;
  --login-text: #0f172a;
  --login-muted: #64748b;
  --login-line: #94a3b847;
  --login-card: #ffffffe0;
  --login-sheet: #fff;
  --login-radius: 24px;
  --login-radius-sm: 14px;
  --panel-logo-gradient: linear-gradient(145deg, #3b82f6 0%, #6366f1 55%, #4f46e5 100%);
  min-height: 100vh;
  color: var(--login-text);
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  background: radial-gradient(80% 60% at 15% 10%, #3b82f62e, #0000 55%), radial-gradient(70% 50% at 85% 90%, #6366f124, #0000 50%), linear-gradient(160deg, #e8f0fe 0%, #eef2ff 38%, #f0f4f8 100%);
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-page:before, .login-page:after {
  content: "";
  filter: blur(60px);
  pointer-events: none;
  border-radius: 50%;
  animation: 18s ease-in-out infinite alternate login-float;
  position: absolute;
}

.login-page:before {
  background: #3b82f638;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
}

.login-page:after {
  background: #6366f12e;
  width: 280px;
  height: 280px;
  animation-delay: -6s;
  bottom: -70px;
  left: -50px;
}

@keyframes login-float {
  from {
    transform: translate(0)scale(1);
  }

  to {
    transform: translate(12px, -16px)scale(1.06);
  }
}

.login-page .shell--auth {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 24px 20px 32px;
  display: flex;
  position: relative;
}

.login-page .auth-screen {
  flex-direction: column;
  align-items: center;
  width: min(100%, 420px);
  display: flex;
  position: relative;
}

.login-page .auth-screen--login {
  width: min(100%, 440px);
}

.login-page .auth-screen--login .auth-hero {
  padding-top: 32px;
}

.login-page .auth-layout {
  border-radius: var(--login-radius);
  background: var(--login-card);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  border: 1px solid #ffffffbf;
  width: 100%;
  animation: .55s cubic-bezier(.22, 1, .36, 1) both login-card-in;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px #0f172a0a, 0 20px 50px #3b82f61f, inset 0 0 0 1px #ffffff80;
}

@keyframes login-card-in {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.login-page .auth-hero {
  text-align: center;
  color: var(--login-text);
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 28px 28px 0;
  display: flex;
}

.login-page .auth-hero--compact {
  padding: 40px 28px 0;
}

.login-page .auth-hero--blocked {
  padding: 36px 28px 0;
}

.login-page .auth-hero h1 {
  color: var(--login-text);
  letter-spacing: -.01em;
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.login-page .auth-hero .auth-subtitle, .login-page .auth-hero .rotating-auth-text--subtitle {
  color: var(--login-muted);
  margin: 0 0 26px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.55;
}

.login-page .auth-hero .login-hero-rotate {
  min-height: 76px;
  font-family: YekanBakh, Estedad, var(--font-geist-sans), ui-sans-serif, system-ui, Tahoma, Arial, sans-serif;
  margin-bottom: 2px;
}

.login-page .auth-hero .rotating-auth-text--title {
  color: var(--login-text);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.35;
}

.login-page .auth-logo {
  justify-content: center;
  align-items: center;
  display: flex;
}

.login-page .auth-logo--hero {
  width: auto;
  min-width: 0;
  max-width: 160px;
  height: 44px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.login-page .auth-logo--hero .panel-logo-image {
  object-fit: contain;
  width: auto !important;
  max-width: 160px !important;
  height: 44px !important;
  max-height: 44px !important;
}

.login-page .auth-sheet {
  width: 100%;
  box-shadow: none;
  text-align: center;
  background: none;
  flex-direction: column;
  padding: 0 28px 28px;
  display: flex;
}

.login-page .auth-sheet--login {
  padding-bottom: 30px;
}

.login-page .auth-sheet:before {
  display: none;
}

.login-page .rotating-auth-text {
  opacity: 0;
  transition: opacity .32s, transform .32s;
  display: block;
  transform: translateY(10px);
}

.login-page .rotating-auth-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.login-page .rotating-auth-text--button {
  display: inline-block;
}

.login-page .auth-submit-btn .login-hero-rotate {
  min-height: auto;
  font-family: YekanBakh, Estedad, var(--font-geist-sans), ui-sans-serif, system-ui, Tahoma, Arial, sans-serif;
  margin-bottom: 0;
}

.login-page .auth-layout--fa, .login-page .auth-card--fa {
  font-family: YekanBakh, Estedad, var(--font-geist-sans), ui-sans-serif, system-ui, Tahoma, Arial, sans-serif;
}

.login-page .auth-layout--fa .auth-hero h1, .login-page .auth-card--fa h1 {
  letter-spacing: -.02em;
  font-weight: 800;
}

.login-page .auth-card--fa .auth-subtitle, .login-page .auth-card--fa .auth-inline-notice, .login-page .auth-card--fa .auth-bot-steps, .login-page .auth-card--fa .auth-blocked-message, .login-page .auth-card--fa .auth-form button[type="submit"], .login-page .auth-card--fa .auth-verify-resend, .login-page .auth-card--fa .auth-verify-change-phone, .login-page .auth-card--fa .auth-bot-actions button, .login-page .auth-card--fa .auth-bot-open, .login-page .auth-card--fa .auth-blocked-back {
  font-family: inherit;
}

.login-page .auth-card--fa .western-digits, .login-page .auth-card--fa .auth-verify-phone, .login-page .auth-card--fa .auth-bot-phone, .login-page .auth-card--fa .auth-form input.western-digits {
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.login-page .phone-field {
  direction: ltr;
  width: 100%;
}

.login-page .phone-field__box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 5px 14px 5px 5px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  display: flex;
  box-shadow: 0 1px 2px #0f172a0a;
}

.login-page .phone-field__box:focus-within, .login-page .phone-field--open .phone-field__box {
  border-color: var(--login-primary);
  background: #fff;
  box-shadow: 0 0 0 4px #3390ec1f, 0 1px 2px #0f172a0a;
}

.login-page .phone-field__prefix {
  color: var(--login-text);
  cursor: pointer;
  box-shadow: none;
  min-height: auto;
  font-weight: inherit;
  background: #eef2f7;
  border: 0;
  border-radius: 12px;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 10px 12px;
  transition: background .15s, transform .12s;
  display: inline-flex;
}

.login-page .phone-field__prefix:hover:not(:disabled) {
  background: #e3edf9;
}

.login-page .phone-field__prefix:active:not(:disabled) {
  transform: scale(.98);
}

.login-page .phone-field__flag {
  font-size: 1.25rem;
  line-height: 1;
}

.login-page .phone-field__code {
  color: #1e293b;
  letter-spacing: -.02em;
  font-size: .9rem;
  font-weight: 800;
}

.login-page .phone-field__arrow {
  color: #94a3b8;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transition: transform .2s, color .2s;
}

.login-page .phone-field--open .phone-field__arrow {
  color: var(--login-primary);
  transform: rotate(180deg);
}

.login-page .phone-field__input {
  min-width: 0;
  color: var(--login-text);
  text-align: left;
  letter-spacing: .03em;
  touch-action: manipulation;
  flex: 1;
  margin: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.login-page .phone-field__input::placeholder {
  color: #b0bac5;
  font-weight: 400;
}

.login-page .phone-field__input:focus {
  outline: none;
}

.country-modal {
  --login-primary: #3390ec;
  --login-text: #0f172a;
  z-index: 13000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #0f172a73;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  animation: .22s country-modal-fade;
  display: flex;
  position: fixed;
  inset: 0;
}

@media (max-width: 639px) {
  .country-modal {
    top: var(--vv-top, 0px);
    height: var(--vv-height, 100dvh);
    align-items: stretch;
    bottom: auto;
    left: 0;
    right: 0;
  }
}

@media (min-width: 640px) {
  .country-modal {
    align-items: center;
    padding: 20px;
  }
}

@keyframes country-modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.country-modal__sheet {
  background: #fff;
  border-radius: 24px 24px 0 0;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  max-height: min(78vh, 560px);
  animation: .32s cubic-bezier(.22, 1, .36, 1) country-sheet-up;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -8px 40px #0f172a2e;
}

@media (max-width: 639px) {
  .country-modal__sheet {
    border-radius: 0;
    max-width: none;
    height: 100%;
    max-height: none;
    animation: none;
  }
}

@media (min-width: 640px) {
  .country-modal__sheet {
    border-radius: 22px;
    animation: .3s cubic-bezier(.22, 1, .36, 1) country-sheet-pop;
    box-shadow: 0 24px 60px #0f172a38;
  }
}

@keyframes country-sheet-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes country-sheet-pop {
  from {
    opacity: 0;
    transform: translateY(16px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.country-modal__handle {
  background: #e2e8f0;
  border-radius: 999px;
  flex-shrink: 0;
  width: 40px;
  height: 4px;
  margin: 10px auto 4px;
}

@media (min-width: 640px) {
  .country-modal__handle {
    display: none;
  }
}

.country-modal__toolbar {
  background: #fff;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .country-modal__toolbar {
    z-index: 2;
    border-bottom: 1px solid #eef2f7;
    position: sticky;
    top: 0;
  }
}

.country-modal__header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 14px;
  display: flex;
}

.country-modal__title {
  color: var(--login-text);
  letter-spacing: -.01em;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.country-modal__close {
  color: #64748b;
  cursor: pointer;
  background: #f1f5f9;
  border: 0;
  border-radius: 10px;
  place-items: center;
  width: 36px;
  height: 36px;
  transition: background .15s, color .15s;
  display: grid;
}

.country-modal__close:hover {
  color: #334155;
  background: #e2e8f0;
}

.country-modal__close svg {
  width: 18px;
  height: 18px;
}

.country-modal__search-wrap {
  flex-shrink: 0;
  padding: 0 16px 12px;
  position: relative;
}

.country-modal__search-icon {
  color: #94a3b8;
  pointer-events: none;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.country-modal__search {
  width: 100%;
  font: inherit;
  color: var(--login-text);
  touch-action: manipulation;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  font-size: 16px;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.country-modal__search:focus {
  border-color: var(--login-primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px #3390ec1f;
}

.country-modal__list {
  padding: 4px 10px calc(16px + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
  margin: 0;
  list-style: none;
  overflow-y: auto;
}

.country-modal__option {
  text-align: start;
  cursor: pointer;
  width: 100%;
  color: var(--login-text);
  background: none;
  border: 0;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  transition: background .12s;
  display: flex;
}

.country-modal__option:hover {
  background: #f1f5f9;
}

.country-modal__option.is-active {
  background: #3390ec1a;
}

.country-modal__option-flag {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.country-modal__option-name {
  color: #1e293b;
  flex: 1;
  font-size: .92rem;
  font-weight: 600;
}

.country-modal__option-dial {
  color: #64748b;
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 700;
}

.country-modal__check {
  width: 18px;
  height: 18px;
  color: var(--login-primary);
  flex-shrink: 0;
}

.country-modal__empty {
  color: #94a3b8;
  text-align: center;
  padding: 28px 16px;
  font-size: .9rem;
}

.login-page .auth-form {
  gap: 16px;
  margin-top: 0;
  display: grid;
}

.login-page .auth-mode-switch {
  background: #94a3b824;
  border-radius: 14px;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px;
  display: grid;
}

.login-page .auth-mode-switch button {
  color: #64748b;
  min-height: 40px;
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 11px;
  font-size: 13.5px;
  font-weight: 750;
  transition: background .15s, color .15s, box-shadow .15s;
}

.login-page .auth-mode-switch button.is-active {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 4px 14px #0f172a14;
}

.login-page .auth-mode-switch button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.login-page .auth-submit-btn, .login-page .auth-form button[type="submit"] {
  border-radius: var(--login-radius-sm);
  background: linear-gradient(135deg, var(--login-primary) 0%, var(--login-accent) 100%);
  color: #fff;
  cursor: pointer;
  width: 100%;
  min-height: 52px;
  box-shadow: 0 10px 24px var(--login-primary-glow);
  border: 0;
  margin-top: 2px;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, opacity .15s;
}

.login-page .auth-submit-btn:hover:not(:disabled), .login-page .auth-form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px #3b82f666;
}

.login-page .auth-submit-btn:active:not(:disabled), .login-page .auth-form button[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
}

.login-page .auth-form input:not(.phone-field__input) {
  border: 1.5px solid var(--login-line);
  border-radius: var(--login-radius-sm);
  width: 100%;
  color: var(--login-text);
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  text-align: center;
  letter-spacing: .25em;
  touch-action: manipulation;
  background: #f8fafc;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.login-page .auth-form input:not(.phone-field__input)::placeholder {
  color: #94a3b8;
  letter-spacing: .15em;
  font-weight: 400;
}

.login-page .auth-form input:not(.phone-field__input):focus {
  border-color: var(--login-primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px #3390ec1f;
}

.login-page .auth-form input.auth-form__field-input {
  text-align: start;
  letter-spacing: normal;
  font-weight: 500;
}

.login-page .auth-form input.auth-form__field-input::placeholder {
  letter-spacing: normal;
  font-weight: 400;
}

.login-page .auth-form label {
  color: var(--login-text);
  text-align: start;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.login-page .auth-bot-phone {
  color: #1e293b;
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  border: 1px solid var(--login-line);
  background: #f1f5f9;
  border-radius: 12px;
  margin: 0 0 18px;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 700;
  display: inline-block;
}

.login-page .auth-bot-steps {
  text-align: start;
  color: #475569;
  margin: 0 0 22px;
  padding-inline-start: 20px;
  font-size: .9rem;
  line-height: 1.75;
}

.login-page .auth-bot-steps li + li {
  margin-top: 8px;
}

.login-page .auth-bot-handle-wrap {
  vertical-align: baseline;
  display: inline-block;
  position: relative;
}

.login-page .auth-bot-handle {
  color: var(--login-primary-dark);
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  cursor: pointer;
  text-underline-offset: 2px;
  direction: ltr;
  unicode-bidi: isolate;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-text-decoration: underline #2563eb59;
  text-decoration: underline #2563eb59;
  transition: color .15s, text-decoration-color .15s;
  display: inline;
}

.login-page .auth-bot-handle:hover {
  -webkit-text-decoration-color: var(--login-primary-dark);
  text-decoration-color: var(--login-primary-dark);
}

.login-page .auth-bot-handle--copied {
  color: #15803d;
  text-decoration-color: #15803d73;
}

.login-page .auth-bot-handle--copy-error {
  color: #b91c1c;
  text-decoration-color: #b91c1c73;
}

.login-page .auth-bot-handle:focus-visible {
  outline: 2px solid var(--login-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.login-page .auth-bot-copy-pop {
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
  border-radius: 6px;
  padding: 2px 7px;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.3;
  animation: 1.4s forwards auth-bot-copy-pop;
  display: inline-block;
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
}

.login-page .auth-bot-copy-pop--success {
  color: #15803d;
  background: #fffffff5;
  border: 1px solid #16a34a38;
  box-shadow: 0 2px 10px #0f172a14;
}

.login-page .auth-bot-copy-pop--error {
  color: #b91c1c;
  background: #fffffff5;
  border: 1px solid #dc262633;
  box-shadow: 0 2px 10px #0f172a14;
}

@keyframes auth-bot-copy-pop {
  0% {
    opacity: 0;
    transform: translateX(-50%)translateY(4px)scale(.82);
  }

  14% {
    opacity: 1;
    transform: translateX(-50%)translateY(0)scale(1);
  }

  72% {
    opacity: 1;
    transform: translateX(-50%)translateY(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-3px)scale(.9);
  }
}

.login-page .auth-bot-step-copy {
  position: relative;
}

.login-page .auth-bot-actions {
  gap: 10px;
  display: grid;
}

.login-page .auth-bot-open {
  border-radius: var(--login-radius-sm);
  color: #fff;
  background: #229ed9;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 8px 20px #229ed94d;
}

.login-page .auth-bot-open:hover {
  filter: brightness(1.05);
}

.login-page .auth-blocked-icon--hero {
  color: #dc2626;
  background: linear-gradient(#fef2f2, #fee2e2);
  border-radius: 20px;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: grid;
}

.login-page .auth-blocked-icon--hero svg {
  width: 34px;
  height: 34px;
}

.login-page .auth-blocked-message {
  color: #991b1b;
  white-space: pre-wrap;
  text-align: start;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 12px;
  margin: 0 0 20px;
  padding: 14px 16px;
  font-size: .9rem;
  line-height: 1.75;
}

.login-page button {
  border-radius: var(--login-radius-sm);
  background: linear-gradient(135deg, var(--login-primary), var(--login-accent));
  color: #fff;
  cursor: pointer;
  border: 0;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform .15s, opacity .15s;
  display: inline-flex;
}

.login-page .phone-field__prefix, .login-page .auth-blocked-back {
  color: inherit;
  font-weight: inherit;
  box-shadow: none;
  background: none;
  min-height: auto;
}

.login-page .auth-blocked-back {
  border-radius: var(--login-radius-sm);
  width: 100%;
  color: var(--login-text);
  border: 1px solid var(--login-line);
  background: #f1f5f9;
  padding: 14px 16px;
  font-weight: 700;
}

.login-page .auth-blocked-back:hover {
  background: #e2e8f0;
}

.login-page button:disabled {
  cursor: not-allowed;
  opacity: .5;
  box-shadow: none;
  transform: none;
}

.login-page .secondary {
  border: 1.5px solid var(--login-line);
  color: var(--login-text);
  box-shadow: none;
  background: #fff;
}

.login-page .secondary:hover:not(:disabled) {
  background: #3390ec0d;
  border-color: #3390ec66;
}

.login-page .full-width {
  width: 100%;
  margin-top: 4px;
}

.login-page .auth-inline-notice {
  text-align: start;
  border-radius: 10px;
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: .8125rem;
  line-height: 1.55;
}

.login-page .auth-inline-notice--error {
  color: #991b1b;
  background: #fef2f2b8;
  border: 1px solid #dc262629;
}

.login-page .auth-inline-notice--info {
  color: #5b21b6;
  background: #f6f3ffe6;
  border: 1px solid #7c3aed29;
}

.login-page .auth-verify-hint {
  color: var(--login-muted);
  text-align: center;
  margin: 0 0 12px;
  padding: 0;
  font-size: .8125rem;
  line-height: 1.55;
}

.login-page .auth-verify-phone {
  color: #344054;
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  margin: 0 0 14px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.login-page .auth-verify-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.login-page .auth-verify-resend, .login-page .auth-verify-change-phone {
  border-radius: 10px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
}

.login-page .auth-verify-resend {
  color: #1a5fad;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  background: #eef6ff;
  border: 1px solid #c5dff7;
  max-width: 100%;
}

.login-page .auth-verify-resend__countdown {
  white-space: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: .3em;
  max-width: 100%;
  line-height: 1.4;
  display: inline-flex;
}

.login-page .auth-verify-resend__seconds {
  text-align: center;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  min-width: 1.6ch;
  font-weight: 700;
  display: inline-block;
}

.login-page .auth-verify-resend:disabled {
  opacity: .72;
  cursor: not-allowed;
}

.login-page .auth-verify-change-phone {
  color: #5f6b76;
  background: #fff;
  border: 1px solid #e8edf2;
}

.login-page .phone-field__box--loading .phone-field__prefix, .login-page .phone-field__box--loading .phone-field__input {
  opacity: .72;
}

.login-page .phone-field__box--loading .phone-field__code {
  letter-spacing: .12em;
}

.app-notice {
  z-index: 12000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #0f172a73;
  place-items: center;
  padding: 20px;
  animation: .22s login-notice-fade-in;
  display: grid;
  position: fixed;
  inset: 0;
}

@keyframes login-notice-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes login-notice-pop-in {
  from {
    opacity: 0;
    transform: translateY(14px)scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.app-notice__card {
  text-align: center;
  background: #fff;
  border-radius: 22px;
  width: min(100%, 380px);
  padding: 28px 24px 22px;
  animation: .3s cubic-bezier(.22, 1, .36, 1) login-notice-pop-in;
  box-shadow: 0 24px 60px #0f172a33;
}

.app-notice__icon {
  border-radius: 18px;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
}

.app-notice__icon--success {
  color: #15803d;
  background: linear-gradient(#ecfdf5 0%, #d1fae5 100%);
}

.app-notice__icon--error {
  color: #b91c1c;
  background: linear-gradient(#fff5f5 0%, #fee2e2 100%);
}

.app-notice__title {
  color: #0f172a;
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.app-notice__text {
  color: #475569;
  white-space: pre-wrap;
  margin: 0 0 20px;
  font-size: .9rem;
  line-height: 1.65;
}

.app-notice__btn {
  width: 100%;
  min-height: 46px;
  font: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
}

.app-notice__btn--success {
  color: #fff;
  background: linear-gradient(#16a34a 0%, #15803d 100%);
}

.app-notice__btn--error {
  color: #fff;
  background: linear-gradient(#ef4444 0%, #dc2626 100%);
}

.login-page .auth-mobile-brand, .login-page .auth-mobile-head, .login-page .auth-mobile-field-label, .login-page .auth-submit-label--mobile {
  display: none;
}

.login-page .auth-hero--desktop {
  display: flex;
}

.login-page .auth-submit-label--desktop {
  display: inline-block;
}

.login-page .auth-layout--login-responsive {
  border-radius: var(--login-radius);
  background: var(--login-card);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  border: 1px solid #ffffffbf;
  width: 100%;
  animation: .55s cubic-bezier(.22, 1, .36, 1) both login-card-in;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px #0f172a0a, 0 20px 50px #3b82f61f, inset 0 0 0 1px #ffffff80;
}

.login-page .auth-login-card {
  width: 100%;
}

.login-page .auth-hero--desktop {
  text-align: center;
  color: var(--login-text);
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 28px 28px 0;
}

@media (max-width: 639px) {
  .login-page {
    --login-primary: #3390ec;
    --login-primary-dark: #2a8adf;
    --login-primary-glow: #3390ec38;
    --login-text: #1e293b;
    --login-muted: #64748b;
    --login-line: #e2e8f0;
    --login-radius: 20px;
    --login-radius-sm: 14px;
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    background: #e8eef3;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
  }

  .login-page:before, .login-page:after {
    display: none;
  }

  .login-page .shell--auth {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 100dvh;
    padding: max(env(safe-area-inset-top), 20px)
      16px
      max(env(safe-area-inset-bottom), 24px);
    justify-content: flex-start;
    align-items: stretch;
  }

  .login-page .auth-screen, .login-page .auth-screen--login {
    flex: 1;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
  }

  .login-page .auth-mobile-brand, .login-page .auth-mobile-head, .login-page .auth-mobile-field-label, .login-page .auth-submit-label--mobile {
    display: block;
  }

  .login-page .auth-hero--desktop, .login-page .auth-submit-label--desktop {
    display: none !important;
  }

  .login-page .auth-layout--login-responsive, .login-page .auth-layout--step-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: calc(100dvh - max(env(safe-area-inset-top), 20px) - max(env(safe-area-inset-bottom), 24px));
    -webkit-backdrop-filter: none;
    box-shadow: none;
    box-sizing: border-box;
    background: none;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    gap: 0;
    animation: .4s cubic-bezier(.22, 1, .36, 1) both login-layout-in;
    display: flex;
    overflow: visible;
  }

  .login-page .auth-layout--login-responsive.auth-layout--fa, .login-page .auth-layout--step-card.auth-layout--fa {
    font-family: YekanBakh, Estedad, var(--font-geist-sans), ui-sans-serif, system-ui, Tahoma, Arial, sans-serif;
  }

  .login-page .auth-mobile-brand {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 0;
    display: flex;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark {
    min-width: 112px;
    max-width: 168px;
    height: 56px;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark .panel-logo-image {
    max-width: 168px !important;
    height: 56px !important;
    max-height: 56px !important;
  }

  .login-page .auth-mobile-brand-tag {
    max-width: 100%;
    color: var(--login-muted);
    margin: 0;
    padding-inline: 4px;
    font-size: .84rem;
    font-weight: 500;
    line-height: 1.55;
  }

  .login-page .auth-login-card {
    box-sizing: border-box;
    border-radius: var(--login-radius);
    border: 1px solid var(--login-line);
    background: #fff;
    flex-direction: column;
    flex: auto;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 24px 18px 28px;
    display: flex;
    box-shadow: 0 8px 32px #0f172a0f;
  }

  .login-page .auth-login-card > * {
    min-width: 0;
    max-width: 100%;
  }

  .login-page .auth-mobile-head {
    text-align: center;
    margin-bottom: 20px;
    display: block;
  }

  .login-page .auth-mobile-head h1 {
    letter-spacing: -.02em;
    color: var(--login-text);
    margin: 0 0 6px;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .login-page .auth-mobile-head .auth-subtitle {
    color: var(--login-muted);
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
  }

  .login-page .auth-mobile-field-label {
    color: #475569;
    text-align: start;
    margin: 0 0 8px;
    font-size: .82rem;
    font-weight: 700;
    display: block;
  }

  .login-page .auth-layout--login-responsive .auth-sheet, .login-page .auth-layout--step-card .auth-sheet {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
    text-align: start;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  .login-page .auth-form {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .login-page .phone-field {
    box-sizing: border-box;
    direction: ltr;
    unicode-bidi: isolate;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .login-page[dir="rtl"] .auth-mobile-field-label, .login-page[dir="rtl"] .auth-mobile-head, .login-page[dir="rtl"] .auth-mobile-brand-tag {
    text-align: center;
  }

  .login-page .auth-layout--step-card {
    box-sizing: border-box;
    border-radius: var(--login-radius);
    border: 1px solid var(--login-line);
    background: #fff;
    justify-content: center;
    gap: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px #0f172a0f;
  }

  .login-page .auth-layout--step-card .auth-hero {
    color: var(--login-text);
    text-align: center;
    padding: 28px 24px 0;
  }

  .login-page .auth-layout--step-card .auth-hero h1 {
    color: var(--login-text);
    font-size: 1.3rem;
    font-weight: 800;
  }

  .login-page .auth-layout--step-card .auth-hero .auth-subtitle {
    color: var(--login-muted);
    margin-bottom: 0;
    font-size: .9rem;
  }

  .login-page .auth-layout--step-card .auth-hero--compact, .login-page .auth-layout--step-card .auth-hero--blocked {
    min-height: auto;
    padding-bottom: 8px;
  }

  .login-page .auth-layout--step-card .auth-logo--hero.auth-logo--wordmark {
    width: auto;
    min-width: 112px;
    max-width: 168px;
    height: 56px;
    box-shadow: none;
    background: none;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    display: flex;
    overflow: hidden;
  }

  .login-page .auth-layout--step-card .auth-logo--hero.auth-logo--wordmark .panel-logo-image {
    object-fit: contain;
    filter: none;
    width: auto !important;
    max-width: 168px !important;
    height: 56px !important;
    max-height: 56px !important;
  }

  .login-page .auth-layout--step-card .auth-blocked-icon--hero {
    color: #dc2626;
    box-shadow: none;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
  }

  .login-page .auth-layout--step-card .auth-sheet {
    padding: 8px 24px 28px;
  }

  .login-page .phone-field__box {
    box-sizing: border-box;
    border-color: var(--login-line);
    background: #f8fafc;
    border-radius: 14px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 56px;
    padding: 5px 10px 5px 5px;
  }

  .login-page .phone-field__input {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .login-page .phone-field__box:focus-within, .login-page .phone-field--open .phone-field__box {
    border-color: var(--login-primary);
    box-shadow: 0 0 0 3px #3390ec1f;
  }

  .login-page .phone-field__prefix {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 9px 10px;
  }

  .login-page .auth-submit-label--mobile {
    display: inline-block;
  }

  .login-page .auth-submit-btn, .login-page .auth-form button[type="submit"], .login-page button:not(.phone-field__prefix):not(.auth-blocked-back):not(.auth-verify-resend):not(.auth-verify-change-phone):not(.secondary) {
    box-sizing: border-box;
    border-radius: var(--login-radius-sm);
    background: var(--login-primary);
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    box-shadow: 0 4px 14px var(--login-primary-glow);
    font-size: .95rem;
    font-weight: 700;
  }

  .login-page .auth-submit-btn:hover:not(:disabled), .login-page .auth-form button[type="submit"]:hover:not(:disabled) {
    background: var(--login-primary-dark);
    box-shadow: 0 6px 18px #3390ec47;
  }

  .login-page .auth-form input:not(.phone-field__input) {
    letter-spacing: .35em;
    border-radius: 14px;
    min-height: 56px;
    font-size: 1.3rem;
  }

  .login-page .auth-inline-notice {
    border-radius: 12px;
    font-size: .86rem;
  }

  .login-page .auth-bot-phone, .login-page .auth-verify-phone {
    background: #f8fafc;
    border-radius: 12px;
  }

  .login-page .auth-bot-open {
    border-radius: var(--login-radius-sm);
    min-height: 52px;
  }

  .login-page .auth-verify-actions {
    margin-top: 16px;
  }
}

@keyframes login-layout-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .login-page .shell--auth {
    padding-inline: 12px;
  }

  .login-page .auth-screen--login .auth-login-card {
    padding-inline: 16px;
  }

  .login-page .auth-mobile-head h1 {
    font-size: 1.25rem;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark {
    min-width: 100px;
    max-width: 150px;
    height: 50px;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark .panel-logo-image {
    max-width: 150px !important;
    height: 50px !important;
    max-height: 50px !important;
  }
}

.login-page--standalone {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 639px) {
  .login-page .auth-screen {
    width: 100%;
    max-width: 100%;
  }

  .login-page .auth-layout--step-card {
    -webkit-overflow-scrolling: touch;
    max-height: none;
    overflow-y: auto;
  }

  .login-page .auth-sheet--bot, .login-page .auth-sheet--verify {
    min-height: 0;
  }

  .login-page .auth-bot-actions {
    padding-bottom: 4px;
  }
}

@media (max-width: 639px) and (display-mode: standalone) {
  .login-page .shell--auth {
    padding-top: max(env(safe-area-inset-top), 12px);
    padding-bottom: max(env(safe-area-inset-bottom), 16px);
  }

  .login-page .auth-layout--login-responsive, .login-page .auth-layout--step-card {
    min-height: calc(100dvh - max(env(safe-area-inset-top), 12px) - max(env(safe-area-inset-bottom), 16px));
  }
}

@media (max-height: 560px) and (max-width: 639px) {
  .login-page .auth-layout--login-responsive {
    justify-content: flex-start;
    gap: 16px;
  }

  .login-page .auth-login-card {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .login-page .auth-mobile-head {
    margin-bottom: 16px;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark {
    min-width: 88px;
    max-width: 132px;
    height: 44px;
  }

  .login-page .auth-mobile-brand .auth-logo--wordmark .panel-logo-image {
    max-width: 132px !important;
    height: 44px !important;
    max-height: 44px !important;
  }
}

/* [project]/src/styles/western-digits.css [app-client] (css) */
.western-digits {
  font-family: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.western-digits input, .western-digits textarea, .western-digits select, .western-digits button {
  font-variant-numeric: inherit;
  font-feature-settings: inherit;
  font-family: inherit;
}

/* [project]/src/styles/phone-field.css [app-client] (css) */
.phone-field {
  direction: ltr;
  width: 100%;
}

.phone-field__box {
  background: #f8fafc;
  border: 1px solid #d8dee3;
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 4px 12px 4px 4px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  display: flex;
  box-shadow: 0 1px 2px #0f172a0a;
}

.phone-field__box:focus-within, .phone-field--open .phone-field__box {
  background: #fff;
  border-color: #3390ec;
  box-shadow: 0 0 0 3px #3390ec1f;
}

.phone-field__prefix {
  color: #0f172a;
  cursor: pointer;
  box-shadow: none;
  min-height: auto;
  font-weight: inherit;
  background: #eef2f7;
  border: 0;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 10px;
  transition: background .15s, transform .12s;
  display: inline-flex;
}

.phone-field__prefix:hover:not(:disabled) {
  background: #e3edf9;
}

.phone-field__prefix:active:not(:disabled) {
  transform: scale(.98);
}

.phone-field__flag {
  font-size: 1.2rem;
  line-height: 1;
}

.phone-field__code {
  color: #1e293b;
  letter-spacing: -.02em;
  font-size: .88rem;
  font-weight: 800;
}

.phone-field__arrow {
  color: #94a3b8;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  transition: transform .2s, color .2s;
}

.phone-field--open .phone-field__arrow {
  color: #3390ec;
  transform: rotate(180deg);
}

.phone-field__input {
  color: #0f172a;
  text-align: left;
  letter-spacing: .03em;
  touch-action: manipulation;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.phone-field__input::placeholder {
  color: #b0bac5;
  font-weight: 400;
}

.phone-field__input:focus {
  outline: none;
}

.phone-field__box--loading .phone-field__prefix, .phone-field__box--loading .phone-field__input {
  opacity: .65;
}

.country-modal {
  --phone-field-primary: #3390ec;
  --phone-field-text: #0f172a;
  z-index: 13000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #0f172a73;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  animation: .22s country-modal-fade;
  display: flex;
  position: fixed;
  inset: 0;
}

@media (min-width: 540px) {
  .country-modal {
    align-items: center;
    padding: 20px;
  }
}

@keyframes country-modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.country-modal__sheet {
  background: #fff;
  border-radius: 24px 24px 0 0;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  max-height: min(78vh, 560px);
  animation: .32s cubic-bezier(.22, 1, .36, 1) country-sheet-up;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -8px 40px #0f172a2e;
}

@media (min-width: 540px) {
  .country-modal__sheet {
    border-radius: 22px;
    animation: .3s cubic-bezier(.22, 1, .36, 1) country-sheet-pop;
    box-shadow: 0 24px 60px #0f172a38;
  }
}

@keyframes country-sheet-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes country-sheet-pop {
  from {
    opacity: 0;
    transform: translateY(16px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.country-modal__handle {
  background: #e2e8f0;
  border-radius: 999px;
  flex-shrink: 0;
  width: 40px;
  height: 4px;
  margin: 10px auto 4px;
}

@media (min-width: 540px) {
  .country-modal__handle {
    display: none;
  }
}

.country-modal__toolbar {
  background: #fff;
  flex-shrink: 0;
}

.country-modal__header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 14px;
  display: flex;
}

.country-modal__title {
  color: var(--phone-field-text);
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.country-modal__close {
  color: #64748b;
  cursor: pointer;
  background: #f1f5f9;
  border: 0;
  border-radius: 10px;
  place-items: center;
  width: 36px;
  height: 36px;
  display: grid;
}

.country-modal__close:hover {
  color: #334155;
  background: #e2e8f0;
}

.country-modal__close svg {
  width: 18px;
  height: 18px;
}

.country-modal__search-wrap {
  flex-shrink: 0;
  padding: 0 16px 12px;
  position: relative;
}

.country-modal__search-icon {
  color: #94a3b8;
  pointer-events: none;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.country-modal__search {
  width: 100%;
  font: inherit;
  color: var(--phone-field-text);
  touch-action: manipulation;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  font-size: 16px;
}

.country-modal__search:focus {
  border-color: var(--phone-field-primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px #3390ec1f;
}

.country-modal__list {
  padding: 4px 10px calc(16px + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  margin: 0;
  list-style: none;
  overflow-y: auto;
}

.country-modal__option {
  text-align: start;
  cursor: pointer;
  width: 100%;
  color: var(--phone-field-text);
  background: none;
  border: 0;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.country-modal__option:hover {
  background: #f1f5f9;
}

.country-modal__option.is-active {
  background: #3390ec1a;
}

.country-modal__option-flag {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.country-modal__option-name {
  color: #1e293b;
  flex: 1;
  font-size: .92rem;
  font-weight: 600;
}

.country-modal__option-dial {
  color: #64748b;
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 700;
}

.country-modal__check {
  width: 18px;
  height: 18px;
  color: var(--phone-field-primary);
  flex-shrink: 0;
}

.country-modal__empty {
  color: #94a3b8;
  text-align: center;
  padding: 28px 16px;
  font-size: .9rem;
}

.accounts-form-panel .phone-field {
  margin-bottom: 14px;
}

/*# sourceMappingURL=src_1w0_cvr._.css.map*/