/**
 * Auth landing — ported from AskField v50 authLanding.css (MTN font)
 */
:root {
  --auth-font: "MTN", "MTN Brighter Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* ERS logo palette — orange + charcoal (no blue) */
  --brand-orange: #ff9408;
  --brand-orange-hover: #e88600;
  --brand-orange-deep: #cc6f00;
  --brand-charcoal: #1a1a1a;
  --brand-charcoal-soft: #2d2d2d;
  --brand-muted: #5c5c5c;
  --navy: var(--brand-orange);
  --navy-hover: var(--brand-orange-hover);
  --navy-mid: var(--brand-orange-deep);
  --error: #dc2626;
}

.lp * {
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logged-out body {
  background: var(--brand-charcoal) !important;
  min-height: 100vh;
  overflow: hidden;
}

.logged-out body #main-wrapper {
  padding: 0 !important;
  min-height: 100vh;
  max-height: none;
  overflow: visible;
}

.logged-out .preloader {
  z-index: 100;
}

.lp {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--brand-charcoal);
}

.lp.lp--scroll {
  overflow-y: auto;
  align-items: flex-start;
  padding: 28px 16px 40px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .lp {
    justify-content: flex-end;
    padding: 0 6vw 0 0;
  }
  .lp.lp--scroll {
    padding: 28px 6vw 48px 0;
  }
}

.lp-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 90% at 78% 50%, rgba(255, 180, 90, 0.28) 0%, transparent 62%),
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(255, 148, 8, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(20, 20, 20, 0.75) 0%, transparent 60%);
}

.lp-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 30% 50% at 52% 45%, rgba(255, 160, 60, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 20% 30% at 65% 20%, rgba(255, 200, 120, 0.12) 0%, transparent 60%);
}

.lp-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: lp-orbDrift linear infinite;
}

@keyframes lp-orbDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(14px, -22px) scale(1.02);
  }
  50% {
    transform: translate(-8px, -38px) scale(0.98);
  }
  75% {
    transform: translate(-16px, -12px) scale(1.01);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.lp-arc {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.lp-brand {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 6vw;
  z-index: 5;
}

@media (min-width: 1024px) {
  .lp-brand {
    display: flex;
  }
}

.lp-brand-logo {
  height: clamp(56px, 8vw, 72px);
  width: auto;
  object-fit: contain;
  max-width: min(220px, 55%);
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
  animation:
    lp-fadeSlideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both,
    lp-logoFloat 4s ease-in-out 0.8s infinite;
}

@keyframes lp-fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lp-logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.lp-brand-title {
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.03;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: lp-fadeSlideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.lp-brand-desc {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 360px;
  animation: lp-fadeSlideLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.lp-card-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 520px;
  animation: lp-cardReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.lp-card-wrap.lp-card-wrap--narrow {
  max-width: 430px;
}

@keyframes lp-cardReveal {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lp-mob-logo {
  display: block;
  margin: 0 auto 1.25rem;
  height: clamp(48px, 12vw, 64px);
  width: auto;
  max-width: min(180px, 70%);
  object-fit: contain;
}

@media (min-width: 1024px) {
  .lp-mob-logo {
    display: none;
  }
}

.lp-avatar-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  animation: lp-avatarPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes lp-avatarPop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lp-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(255, 148, 8, 0.4);
  position: relative;
  color: #fff;
}

.lp-avatar svg {
  position: relative;
  z-index: 1;
  stroke: #fff;
}

.lp-avatar::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(255, 148, 8, 0.2);
  animation: lp-glowPulse 2.8s ease-in-out infinite;
}

@keyframes lp-glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

@keyframes lp-fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-head-title {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--brand-charcoal);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.lp-head-sub {
  font-size: 13px;
  color: var(--brand-muted);
}

.lp-card-head {
  text-align: left;
  margin-bottom: 22px;
  animation: lp-fadeUp 0.5s ease 0.25s both;
}

.lp-card-head .lp-head-title {
  margin-bottom: 8px;
}

.lp-card-head .lp-head-sub {
  line-height: 1.5;
  color: #6b6b6b;
  font-size: 14px;
}

.lp-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow:
    0 20px 60px rgba(40, 40, 40, 0.14),
    0 4px 12px rgba(40, 40, 40, 0.07),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.lp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.97);
}

.lp-alert {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: lp-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes lp-shake {
  10%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  80% {
    transform: translateX(4px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-4px);
  }
  40%,
  60% {
    transform: translateX(4px);
  }
}

.lp-alert-txt {
  font-size: 13px;
  color: var(--error);
  font-weight: 500;
}

.lp-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-success-txt {
  font-size: 13px;
  color: #16a34a;
  font-weight: 500;
}

.lp-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.lp-name-row .lp-field {
  margin-bottom: 11px;
}

.lp-field {
  margin-bottom: 13px;
  animation: lp-fadeUp 0.45s ease both;
}

.lp-field:nth-of-type(1) {
  animation-delay: 0.36s;
}
.lp-field:nth-of-type(2) {
  animation-delay: 0.43s;
}

.lp-input-row {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-icon {
  position: absolute;
  left: 14px;
  z-index: 1;
  color: var(--navy);
  pointer-events: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-icon.err {
  color: var(--error);
}

.lp-inp {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid #d1d5db !important;
  background: #ffffff !important;
  padding: 0 16px 0 44px;
  font-size: 15px;
  color: #111;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.lp-inp::placeholder {
  color: #6b7280;
  opacity: 1;
}

.lp-inp:focus {
  border-color: var(--brand-orange) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3.5px rgba(255, 148, 8, 0.18);
}

.lp-inp.err {
  border-color: var(--error);
  background: rgba(220, 38, 38, 0.04);
}

.lp-inp.lp-inp--plain {
  padding-left: 16px;
}

.lp-field-err {
  font-size: 12px;
  color: var(--error);
  margin: 4px 0 0 4px;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.lp-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-muted);
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-phone-input {
  --PhoneInput-color--focus: var(--navy);
  --PhoneInputCountryFlag-height: 1.125em;
  width: 100%;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 148, 8, 0.14);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 12px 0 12px;
  font-size: 15px;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* react-phone-number-input root: do not force full inner height (avoids content stuck to top) */
.lp-phone-input > .PhoneInput {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
}

/* Library uses align-self: stretch — that pins content to the top in some layouts */
.lp-phone-input .PhoneInputCountry {
  align-self: center !important;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.lp-phone-input:focus-within {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(255, 148, 8, 0.1);
}

.lp-phone-input.lp-phone-input--err {
  border-color: var(--error);
  background: rgba(220, 38, 38, 0.04);
}

.lp-phone-input .PhoneInputInput {
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  font-size: 15px;
  color: #111;
  outline: none;
  background: transparent;
  border: none;
  line-height: 1.25;
  padding: 0;
  margin: 0;
  height: auto;
  min-height: 0;
  align-self: center;
  appearance: none;
  -webkit-appearance: none;
}

.lp-phone-input .PhoneInputInput::placeholder {
  color: #9aa5b8;
}

/* Inline variant: same inset as `.lp-inp` when paired with `.lp-icon` */
.lp-phone-input.lp-phone-input--inline {
  flex: 1;
  min-width: 0;
  padding: 0 16px 0 44px;
}

.lp-eye {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  transition: color 0.2s;
}

.lp-eye:hover {
  color: var(--navy);
}

.lp-opts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  margin-top: 4px;
  animation: lp-fadeUp 0.45s ease 0.5s both;
}

.lp-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lp-chk {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #c5cedb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.18s,
    border-color 0.18s;
  cursor: pointer;
}

.lp-chk.on {
  background: var(--navy);
  border-color: var(--navy);
}

.lp-rem-lbl {
  font-size: 13px;
  color: #444;
}

.lp-forgot {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.lp-forgot:hover {
  color: var(--navy);
}

.lp-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  margin-top: 2px;
  animation: lp-fadeUp 0.45s ease 0.54s both;
}

.lp-terms .lp-chk {
  margin-top: 1px;
}

.lp-terms-lbl {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  cursor: pointer;
}

.lp-submit {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  box-shadow: 0 6px 24px rgba(255, 148, 8, 0.44);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.12s;
  animation: lp-fadeUp 0.45s ease 0.56s both;
  position: relative;
  overflow: hidden;
}

.lp-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
}

.lp-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-orange-hover) 0%, var(--brand-orange-deep) 100%);
  box-shadow: 0 8px 30px rgba(255, 148, 8, 0.56);
  transform: translateY(-1px);
}

.lp-submit:active:not(:disabled) {
  transform: translateY(0);
}

.lp-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  animation: lp-fadeUp 0.45s ease 0.61s both;
}

.lp-div-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 148, 8, 0.11);
}

.lp-div-lbl {
  font-size: 12px;
  color: #9aa5b8;
  white-space: nowrap;
}

.lp-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
  animation: lp-fadeUp 0.45s ease 0.66s both;
}

.lp-socials.lp-socials--wrap {
  flex-wrap: wrap;
}

.lp-soc {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 148, 8, 0.11);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 148, 8, 0.07);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.lp-soc:hover:not(:disabled) {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(255, 148, 8, 0.16);
  transform: translateY(-2px);
}

.lp-soc:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lp-soc-icon {
  width: 22px;
  height: 22px;
}

.lp-signup {
  text-align: center;
  font-size: 13px;
  color: #666;
  animation: lp-fadeUp 0.45s ease 0.71s both;
}

.lp-signup a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.lp-signup a:hover {
  text-decoration: underline;
}

.lp-back {
  text-align: center;
  font-size: 13px;
  color: #666;
}

.lp-back a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.lp-back a:hover {
  text-decoration: underline;
}

.lp-status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-status-icon.ok {
  background: rgba(22, 163, 74, 0.12);
  border: 1.5px solid rgba(22, 163, 74, 0.25);
}

.lp-status-icon.err {
  background: rgba(220, 38, 38, 0.08);
  border: 1.5px solid rgba(220, 38, 38, 0.22);
}

.lp-status-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.lp-status-title.ok {
  color: #16a34a;
}

.lp-status-title.err {
  color: var(--error);
}

.lp-status-sub {
  font-size: 13px;
  color: var(--brand-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  border: 1.5px solid rgba(22, 163, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-confirm-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  text-align: center;
  margin-bottom: 6px;
}

.lp-confirm-sub {
  font-size: 13px;
  color: var(--brand-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-confirm-retry {
  text-align: center;
  font-size: 13px;
  color: #666;
}

.lp-confirm-retry button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  margin-left: 4px;
}

.lp-confirm-retry button:hover {
  text-decoration: underline;
}

.lp-info {
  background: rgba(255, 148, 8, 0.1);
  border: 1px solid rgba(255, 148, 8, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #334155;
  line-height: 1.55;
  text-align: left;
}

.lp-card--center {
  text-align: center;
}

.lp-card--left {
  text-align: left;
}

a.lp-submit {
  text-decoration: none;
}

.lp-btn-secondary {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.12s;
}

.lp-btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.lp-btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

a.lp-btn-secondary {
  text-decoration: none;
  box-sizing: border-box;
}

.lp-warn {
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.14);
  padding: 12px 14px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.5;
  margin-bottom: 14px;
}

.lp-otp-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-otp-cell {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--auth-font, "MTN", "MTN Brighter Sans", system-ui, sans-serif);
  border-radius: 12px;
  border: 1.5px solid rgba(255, 148, 8, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.lp-otp-cell:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3.5px rgba(255, 148, 8, 0.1);
}

.lp-otp-cell:disabled {
  opacity: 0.55;
}

.lp-loader-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 16px;
}

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

.lp-spin {
  animation: lp-spin 0.8s linear infinite;
}

/* GrowCRM form-material overrides inside auth card */
.lp-card .form-material .form-control,
.lp-card .form-material .form-control:focus,
.lp-card .form-material .form-control.lp-inp,
.lp-card .form-material .form-control.lp-inp:focus {
  background-image: none !important;
  background-color: #ffffff !important;
  border: 1.5px solid #d1d5db !important;
  border-radius: 12px !important;
  padding: 0 16px 0 44px !important;
  height: 50px !important;
  min-height: 50px !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  float: none !important;
}

.lp-card .form-material .form-control.lp-inp:focus,
.lp-card .form-material .form-control:focus {
  border-color: var(--brand-orange) !important;
  box-shadow: 0 0 0 3.5px rgba(255, 148, 8, 0.18) !important;
  outline: none !important;
}

.lp-card .form-material .form-group {
  overflow: visible;
  margin-bottom: 0;
}

.lp-chk-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lp-chk svg {
  opacity: 0;
  transition: opacity 0.18s;
}

.lp-chk.on svg {
  opacity: 1;
}

@media (max-width: 1023px) {
  .lp {
    background: #f7f3ef;
  }
  .lp-wash {
    background:
      radial-gradient(ellipse 140% 100% at 50% 0%, #fff8f0 0%, transparent 60%),
      radial-gradient(ellipse 120% 120% at 80% 100%, rgba(255, 200, 140, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 100% 80% at 0% 60%, rgba(255, 220, 180, 0.3) 0%, transparent 50%);
  }
  .lp-mesh {
    display: none;
  }
}

@media (max-width: 480px) {
  .lp {
    padding: 32px 16px;
    align-items: flex-start;
  }
  .lp.lp--scroll {
    padding: 24px 16px 36px;
  }
  .lp-card {
    padding: 20px 16px 18px;
    border-radius: 18px;
  }
  .lp-card-wrap {
    max-width: 100%;
  }
  .lp-card-wrap.lp-card-wrap--narrow {
    max-width: 100%;
  }
  .lp-head-title {
    font-size: 1.5rem;
  }
  .lp-avatar {
    width: 56px;
    height: 56px;
  }
  .lp-inp {
    height: 46px;
    font-size: 14px;
  }
  .lp-phone-input {
    height: 46px;
    font-size: 14px;
  }
  .lp-phone-input .PhoneInputInput {
    font-size: 14px;
  }
  .lp-submit {
    height: 46px;
    font-size: 14px;
  }
  .lp-name-row {
    grid-template-columns: 1fr;
  }
  .lp-soc {
    width: 46px;
    height: 46px;
  }
  .lp-otp-cell {
    width: 42px;
    height: 46px;
    font-size: 1.1rem;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .lp {
    padding: 40px 32px;
    align-items: center;
  }
  .lp.lp--scroll {
    align-items: flex-start;
  }
  .lp-card-wrap {
    max-width: 560px;
  }
  .lp-card-wrap.lp-card-wrap--narrow {
    max-width: 430px;
  }
  .lp-card {
    padding: 32px 36px 28px;
  }
  .lp-head-title {
    font-size: 2rem;
  }
  .lp-avatar {
    width: 76px;
    height: 76px;
  }
  .lp-inp {
    height: 54px;
    font-size: 15px;
  }
  .lp-phone-input {
    height: 54px;
    font-size: 15px;
  }
  .lp-phone-input .PhoneInputInput {
    font-size: 15px;
  }
  .lp-submit {
    height: 54px;
    font-size: 16px;
  }
  .lp-soc {
    width: 56px;
    height: 56px;
  }
}
