/* Logino Email — minimal split auth theme */
:root {
  --le-accent: #ff5c35;
  --le-accent-hover: #e04a26;
  --le-surface: #ffffff;
  --le-text: #111827;
  --le-muted: #6b7280;
  --le-label: #111827;
  --le-line: #e5e7eb;
  --le-input-border: #d1d5db;
  --le-radius: 24px;
  --le-radius-sm: 10px;
  --le-shadow: 0 16px 40px rgb(15 23 42 / 0.1);
  --le-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --le-email: #2563eb;
}

.le-auth-page,
.le-auth-page body {
  margin: 0;
}

.le-auth-page__main {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background-color: var(--le-bg, #f5f6f8);
}

.le-auth,
.le-auth * {
  direction: ltr !important;
  unicode-bidi: isolate;
  box-sizing: border-box;
}

.le-auth {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  font-family: var(--le-font);
  color: var(--le-text);
  -webkit-font-smoothing: antialiased;
}

.le-auth.has-media {
  max-width: 820px;
}

.le-auth__shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--le-surface);
  border-radius: var(--le-radius);
  box-shadow: var(--le-shadow);
  border: 1px solid rgb(15 23 42 / 0.06);
  overflow: hidden;
}

.le-auth__content {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 32px 28px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.le-auth.has-media .le-auth__content {
  flex: 1 1 58%;
  max-width: 58%;
  padding: 36px 36px 32px;
}

.le-auth__media {
  position: relative;
  flex: 0 0 42%;
  width: 42%;
  min-height: 100%;
  background: #eef0f3;
  overflow: hidden;
}

.le-auth__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.le-auth__dismiss {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #ef4444;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.le-auth__dismiss[hidden] {
  display: none !important;
}

.le-auth__dismiss--content {
  top: 12px;
  right: 12px;
}

.le-auth.is-modal .le-auth__content {
  padding-top: 44px;
}

.le-auth.is-modal.has-media .le-auth__content {
  padding-top: 36px;
}

.le-auth:not(.is-modal) .le-auth__content {
  padding-top: 44px;
}

.le-auth:not(.is-modal).has-media .le-auth__content {
  padding-top: 36px;
}

.le-auth__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 22px;
  text-align: center;
}

.le-auth__logo img {
  max-height: 30px;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.le-auth__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  min-width: 0;
}

.le-auth__heading-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.le-auth__nav-back {
  flex: 0 0 32px;
  align-self: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--le-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.le-auth__nav-back:hover {
  background: #f3f4f6;
}

.le-auth__nav-back[hidden] {
  display: none !important;
}

.le-auth__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--le-text);
  min-width: 0;
}

.le-auth.is-step .le-auth__title,
.le-auth.has-email .le-auth__title {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.le-auth__title-email {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--le-email);
  line-height: 1.3;
  word-break: break-all;
}

.le-auth__title-email[hidden] {
  display: none !important;
}

.le-auth__sub {
  margin: 0 0 18px;
  color: var(--le-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.le-auth__sub[hidden] {
  display: none !important;
}

.le-auth__sub--tip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.le-auth__sub--tip::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, #fff 1.1px, transparent 1.25px),
    radial-gradient(circle at 50% 68%, #fff 0.9px, transparent 1.05px),
    #94a3b8;
}

.le-auth__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--le-btn, var(--le-accent)) 8%, #fff);
  border: 1px solid color-mix(in srgb, var(--le-btn, var(--le-accent)) 18%, #e5e7eb);
  color: var(--le-text);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.le-auth__notice[hidden] {
  display: none !important;
}

.le-auth__notice::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, #fff 1.4px, transparent 1.6px),
    radial-gradient(circle at 50% 68%, #fff 1.2px, transparent 1.4px),
    var(--le-btn, var(--le-accent));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--le-btn, var(--le-accent)) 16%, transparent);
}

.le-auth__notice-text {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
}

.le-auth__notice-email {
  display: inline;
  font-weight: 700;
  color: var(--le-email);
  word-break: break-all;
}

.le-email-chip {
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--le-email);
  word-break: break-word;
  background: none;
  border: 0;
  line-height: 1.4;
  text-align: center !important;
}

.le-email-chip[hidden] {
  display: none !important;
}

.le-auth__alert {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgb(220 38 38 / 0.12);
  font-size: 0.88rem;
  line-height: 1.4;
}

.le-auth__alert[hidden] {
  display: none !important;
}

.le-auth__alert.is-ok {
  background: #f0fdf4;
  color: #15803d;
  border-color: rgb(22 163 74 / 0.14);
}

.le-auth__card {
  width: 100%;
}

.le-panel {
  display: none;
  width: 100%;
}

.le-panel.is-active {
  display: block;
}

.le-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 16px;
  padding: 4px;
  border-radius: 12px;
  background: #f3f4f6;
}

.le-method-tabs[hidden] {
  display: none !important;
}

.le-method-tabs__btn {
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--le-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 8px;
  cursor: pointer;
  line-height: 1.2;
}

.le-method-tabs__btn.is-active {
  background: #fff;
  color: var(--le-text);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.08);
}

.le-field {
  display: block;
  width: 100%;
  margin: 0 0 14px;
}

.le-field__label {
  display: block;
  width: 100%;
  margin: 0 0 7px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--le-label);
}

.le-field input:not(.le-cc__search) {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--le-input-border);
  border-radius: var(--le-radius-sm);
  padding: 13px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--le-text);
  outline: none;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.le-field input:not(.le-cc__search)::placeholder {
  color: #9ca3af;
}

.le-field input:not(.le-cc__search):focus {
  border-color: var(--le-btn, var(--le-accent));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--le-btn, var(--le-accent)) 18%, transparent);
}

.le-password {
  position: relative;
  width: 100%;
}

.le-password input {
  padding-right: 46px;
}

.le-password__toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--le-muted);
  cursor: pointer;
  padding: 0;
}

.le-password__toggle:hover {
  color: var(--le-text);
  background: #f3f4f6;
}

.le-password__icon {
  display: none;
  line-height: 0;
}

.le-password__icon--show {
  display: block;
}

.le-password__toggle.is-visible .le-password__icon--show {
  display: none;
}

.le-password__toggle.is-visible .le-password__icon--hide {
  display: block;
}

.le-otp {
  display: flex;
  gap: 8px;
  width: 100%;
}

.le-otp__digit {
  flex: 1 1 0;
  min-width: 0;
  max-width: 56px;
  width: auto !important;
  height: 52px;
  padding: 0 !important;
  text-align: center !important;
  direction: ltr !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  border-radius: 10px !important;
  border: 1.5px solid color-mix(in srgb, var(--le-btn, var(--le-accent)) 45%, #d1d5db) !important;
  background: #fff;
}

.le-otp__digit:focus {
  border-color: var(--le-btn, var(--le-accent)) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--le-btn, var(--le-accent)) 18%, transparent);
}

.le-btn {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--le-radius-sm);
  padding: 13px 16px;
  background: var(--le-btn, var(--le-accent));
  color: #fff;
  font-family: inherit;
  font-weight: 650;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.le-btn:hover {
  background: var(--le-btn-hover, var(--le-accent-hover));
}

.le-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.le-link {
  display: inline-block;
  margin: 0;
  border: 0;
  background: none;
  color: var(--le-btn, var(--le-accent));
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0;
}

.le-link:hover {
  color: var(--le-btn-hover, var(--le-accent-hover));
}

.le-link:disabled {
  opacity: 0.55;
  cursor: default;
}

.le-link--fallback {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.le-actions-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}

.le-actions-row--meta {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: nowrap;
}

.le-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  flex: 0 1 auto;
  min-width: 0;
}

.le-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--le-btn, var(--le-accent));
  cursor: pointer;
}

.le-remember__text {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--le-muted);
  line-height: 1.35;
}

.le-actions-row--meta .le-link {
  flex: 0 0 auto;
  font-size: 0.84rem;
  line-height: 1.35;
  white-space: nowrap;
}

.le-auth.has-method-tabs .le-link--fallback {
  display: none !important;
}

.le-resend-row {
  margin: 0 0 10px;
}

.le-resend-row .le-link {
  color: var(--le-muted);
}

.le-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.84rem;
  line-height: 1.45;
}

.le-tip__icon {
  flex: 0 0 auto;
  display: inline-flex;
  color: #d97706;
  margin-top: 1px;
}

.le-tip__icon svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.le-tip__text {
  flex: 1 1 auto;
  min-width: 0;
}

.le-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--le-btn, var(--le-accent));
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.92rem;
}

.le-account-btn:hover {
  background: var(--le-btn-hover, var(--le-accent-hover));
  color: #fff !important;
}

.le-auth.is-locked .le-auth__shell {
  border-color: #fecaca;
}

.le-auth.is-locked form.le-panel {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.le-auth.is-locked .le-panel[data-panel="locked"] {
  display: block !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.le-auth.is-locked .le-btn,
.le-auth.is-locked .le-link,
.le-auth.is-locked .le-auth__dismiss,
.le-auth.is-locked .le-auth__nav-back {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.le-lock__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #991b1b;
}

.le-lock__text {
  margin: 0;
  color: #7f1d1d;
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .le-auth.has-media {
    max-width: 420px;
  }

  .le-auth.has-media .le-auth__content {
    flex: 1 1 auto;
    max-width: 100%;
    padding: 28px 22px 24px;
  }

  .le-auth__media {
    display: none;
  }

  .le-auth.is-modal.has-media .le-auth__content {
    padding-top: 44px;
  }
}

@media (max-width: 480px) {
  .le-auth-page__main {
    padding: 16px 12px;
    align-items: flex-start;
    padding-top: 40px;
  }

  .le-auth__shell {
    border-radius: 18px;
  }

  .le-auth__content,
  .le-auth.has-media .le-auth__content {
    padding: 24px 18px 20px;
  }

  .le-auth.is-modal .le-auth__content,
  .le-auth.is-modal.has-media .le-auth__content {
    padding-top: 42px;
  }

  .le-auth__title {
    font-size: 1.3rem;
  }

  .le-auth.is-step .le-auth__title,
  .le-auth.has-email .le-auth__title {
    font-size: 1rem;
  }

  .le-auth__sub {
    font-size: 0.88rem;
  }

  .le-otp {
    gap: 6px;
  }

  .le-otp__digit {
    height: 46px;
    font-size: 1.1rem !important;
    max-width: none;
  }

  .le-method-tabs__btn {
    font-size: 0.82rem;
    padding: 9px 6px;
  }

  .le-actions-row--meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .le-btn,
  .le-field input:not(.le-cc__search),
  .le-phone,
  .le-link {
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   Theme compatibility (Woodmart / WooCommerce style all `button` elements)
   ------------------------------------------------------------------------- */
.le-auth button,
.le-auth .le-btn,
.le-auth .le-link,
.le-auth .le-method-tabs__btn,
.le-auth .le-password__toggle,
.le-auth .le-auth__nav-back,
.le-auth .le-auth__dismiss {
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: var(--le-font) !important;
  box-shadow: none !important;
  min-width: 0 !important;
}

.le-auth button.le-btn,
.le-auth .le-btn {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-height: 48px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 13px 16px !important;
  border: 0 !important;
  border-radius: var(--le-radius-sm) !important;
  background: var(--le-btn, #ff5c35) !important;
  background-color: var(--le-btn, #ff5c35) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  gap: 0 !important;
}

.le-auth button.le-btn:hover,
.le-auth button.le-btn:focus,
.le-auth .le-btn:hover,
.le-auth .le-btn:focus {
  background: var(--le-btn-hover, #e04a26) !important;
  background-color: var(--le-btn-hover, #e04a26) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.le-auth button.le-link,
.le-auth .le-link {
  position: static !important;
  display: inline-block !important;
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--le-btn, #ff5c35) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  gap: 0 !important;
}

.le-auth button.le-link:hover,
.le-auth .le-link:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--le-btn-hover, #e04a26) !important;
}

.le-auth button.le-link.le-link--fallback,
.le-auth .le-link--fallback {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-top: 12px !important;
}

.le-auth .le-actions-row--meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.le-auth .le-actions-row--meta .le-link {
  min-height: 0 !important;
  height: auto !important;
  line-height: 1.35 !important;
  font-size: 0.84rem !important;
}

.le-auth .le-password {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
}

.le-auth .le-password > input[type="password"],
.le-auth .le-password > input[type="text"] {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  max-width: 100% !important;
  padding: 12px 46px 12px 14px !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.le-auth button.le-password__toggle,
.le-auth .le-password__toggle {
  position: absolute !important;
  top: 50% !important;
  right: 6px !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #6b7280 !important;
  gap: 0 !important;
  line-height: 0 !important;
}

.le-auth button.le-password__toggle:hover,
.le-auth .le-password__toggle:hover {
  background: #f3f4f6 !important;
  background-color: #f3f4f6 !important;
  color: #111827 !important;
}

.le-auth button.le-auth__nav-back,
.le-auth .le-auth__nav-back {
  position: relative !important;
  flex: 0 0 32px !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #111827 !important;
  gap: 0 !important;
  line-height: 0 !important;
}

.le-auth button.le-auth__nav-back:hover,
.le-auth .le-auth__nav-back:hover {
  background: #f3f4f6 !important;
  background-color: #f3f4f6 !important;
  color: #111827 !important;
}

.le-auth button.le-auth__dismiss,
.le-auth .le-auth__dismiss {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #ef4444 !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  gap: 0 !important;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.14) !important;
}

/* Must win over display:inline-flex above */
.le-auth button.le-auth__dismiss[hidden],
.le-auth .le-auth__dismiss[hidden],
.le-auth button.le-auth__nav-back[hidden],
.le-auth .le-auth__nav-back[hidden] {
  display: none !important;
}

/* With side image: only the X on the image (desktop) */
.le-auth.has-media .le-auth__dismiss--content {
  display: none !important;
}

.le-auth.has-media .le-auth__dismiss--media:not([hidden]) {
  display: inline-flex !important;
}

.le-auth.no-media .le-auth__dismiss--media {
  display: none !important;
}

.le-auth.no-media .le-auth__dismiss--content:not([hidden]) {
  display: inline-flex !important;
}

/* Mobile: side image hidden → show content X instead */
@media (max-width: 860px) {
  .le-auth.has-media .le-auth__dismiss--content:not([hidden]) {
    display: inline-flex !important;
  }

  .le-auth.has-media .le-auth__dismiss--media {
    display: none !important;
  }

  .le-auth.has-media .le-auth__content {
    padding-top: 44px !important;
  }
}

.le-auth button.le-method-tabs__btn,
.le-auth .le-method-tabs__btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 40px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 8px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #6b7280 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  gap: 0 !important;
}

.le-auth button.le-method-tabs__btn.is-active,
.le-auth .le-method-tabs__btn.is-active {
  background: #fff !important;
  background-color: #fff !important;
  color: #111827 !important;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.08) !important;
}

.le-auth svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
}

.le-auth .le-password__toggle svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.le-auth .le-field input:not(.le-cc__search) {
  height: 48px !important;
  min-height: 48px !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #111827 !important;
  font-size: 1rem !important;
  box-shadow: none !important;
}

.le-auth .le-field input:not(.le-cc__search):focus {
  border-color: var(--le-btn, #ff5c35) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--le-btn, #ff5c35) 18%, transparent) !important;
  outline: none !important;
}

.le-auth .le-remember input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 4px !important;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: none !important;
  appearance: auto;
  -webkit-appearance: checkbox;
  cursor: pointer;
}

.le-auth .le-otp__digit {
  height: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  text-align: center !important;
  direction: ltr !important;
}

@media (max-width: 480px) {
  .le-auth {
    max-width: 100% !important;
  }

  .le-auth__shell {
    width: 100% !important;
  }

  .le-auth .le-field input:not(.le-cc__search),
  .le-auth .le-password > input[type="password"],
  .le-auth .le-password > input[type="text"],
  .le-auth button.le-btn,
  .le-auth .le-btn {
    min-height: 46px !important;
    height: 46px !important;
  }

  .le-auth button.le-btn,
  .le-auth .le-btn {
    height: auto !important;
    min-height: 46px !important;
  }
}

