
/* v105: clean OTP pages, remove duplicated step card completely */
.nn-otp-page{
  min-height:calc(100vh - 82px);
  background:
    radial-gradient(circle at 86% 12%, rgba(230,0,35,.08), transparent 24rem),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  padding:56px 16px 80px;
}
.nn-otp-shell{
  width:min(760px,100%);
  margin:0 auto;
}
.nn-otp-card{
  background:#fff;
  border:1px solid #edf1f6;
  border-radius:26px;
  padding:34px;
  box-shadow:0 28px 80px rgba(16,24,40,.10);
}
.nn-otp-kicker{
  color:#e60023;
  font-size:.86rem;
  font-weight:950;
  margin-bottom:8px;
}
.nn-otp-card h1{
  font-size:clamp(1.7rem,4vw,2.35rem);
  line-height:1.15;
  letter-spacing:-.05em;
  font-weight:950;
  color:#101828;
  margin:0 0 10px;
}
.nn-otp-lead{
  color:#475467;
  font-weight:700;
  line-height:1.65;
  margin:0 0 28px;
}
.nn-otp-destination{
  display:inline-flex;
  align-items:center;
  border:1px solid #ffd0d8;
  background:#fff7f8;
  color:#e60023;
  border-radius:999px;
  padding:8px 14px;
  font-weight:850;
  margin:0 0 24px;
}
.nn-otp-form{
  display:grid;
  gap:12px;
}
.nn-otp-form label{
  color:#101828;
  font-weight:900;
}
.nn-otp-inline{
  display:grid;
  grid-template-columns:1fr 180px;
  gap:14px;
  align-items:stretch;
}
.nn-otp-inline input{
  width:100%;
  height:56px;
  border:1.5px solid #d0d5dd;
  border-radius:12px;
  padding:0 16px;
  font-size:1rem;
  font-weight:750;
  outline:none;
  background:#fff;
}
.nn-otp-inline input:focus{
  border-color:#e60023;
  box-shadow:0 0 0 4px rgba(230,0,35,.08);
}
.nn-otp-inline button,
.nn-otp-actions button{
  border:0;
  background:#e60023;
  color:#fff;
  border-radius:14px;
  font-weight:950;
  padding:0 18px;
  min-height:56px;
  box-shadow:0 14px 30px rgba(230,0,35,.18);
}
.nn-otp-inline button:disabled{
  opacity:.65;
  cursor:not-allowed;
}
.nn-otp-note{
  color:#667085;
  font-weight:750;
  font-size:.92rem;
  line-height:1.6;
  margin:8px 0 0;
}
.nn-otp-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:24px;
}
.nn-otp-actions a{
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border:1px solid #e5eaf2;
  border-radius:12px;
  text-decoration:none;
  color:#344054;
  font-weight:900;
  background:#fff;
}
.nn-otp-actions form{
  margin:0;
}
.nn-otp-actions button{
  min-height:46px;
  background:#fff;
  color:#e60023;
  border:1.5px solid #e60023;
  box-shadow:none;
}
.apply-step-shell,
.apply-step-header,
.stepper-grid,
.apply-step-secure,
.apply-panel,
.apply-side-card{
  /* kept for old pages, not used by new OTP templates */
}
@media(max-width:640px){
  .nn-otp-page{
    padding:22px 12px 52px;
  }
  .nn-otp-card{
    border-radius:20px;
    padding:24px 18px;
    box-shadow:0 18px 48px rgba(16,24,40,.08);
  }
  .nn-otp-inline{
    grid-template-columns:1fr;
  }
  .nn-otp-inline button{
    width:100%;
  }
  .nn-otp-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .nn-otp-actions a,
  .nn-otp-actions button{
    width:100%;
  }
}
