:root {
  --maroon: #9e363a;
  --maroon-dark: #762529;
  --maroon-deep: #541a1d;
  --gold: #e5b931;
  --ink: #1f2933;
  --muted: #68737f;
  --line: #e4e7eb;
  --surface: #ffffff;
  --canvas: #f5f3f1;
  --soft-maroon: #fbf3f3;
  --green: #247b62;
  --font: "Geist", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a, label { -webkit-tap-highlight-color: transparent; }

.site-shell {
  width: 100%;
  height: 100dvh;
  min-height: 680px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.site-header {
  width: min(1500px, 100%);
  height: 72px;
  flex: 0 0 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(158, 54, 58, .16);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-copy { min-width: 0; display: grid; gap: 3px; }
.brand-copy strong {
  color: var(--maroon);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}
.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.header-meta { display: flex; align-items: center; gap: 18px; font-size: 12px; }
.header-meta a { color: var(--maroon); text-decoration: none; font-weight: 600; }
.header-pill {
  padding: 7px 11px;
  color: var(--maroon-dark);
  background: #fff;
  border: 1px solid #ead7d8;
  border-radius: 999px;
  font-weight: 550;
}
.header-pill i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: #3f9b6d;
  box-shadow: 0 0 0 3px rgba(63, 155, 109, .12);
}

.admission-stage {
  width: min(1500px, 100%);
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 31%) minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #e5dfdc;
  border-radius: 18px;
  box-shadow: 0 18px 54px rgba(71, 37, 31, .10);
}
.story-panel {
  min-height: 0;
  padding: clamp(30px, 3vw, 48px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #a23a3e 0%, #842d31 52%, #601d21 100%);
}
.story-grid {
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom right, black, transparent 78%);
}
.story-panel::before {
  content: "";
  width: 5px;
  height: 76px;
  position: absolute;
  top: 0;
  left: 42px;
  background: var(--gold);
}
.story-panel::after {
  content: "";
  width: 290px;
  height: 290px;
  position: absolute;
  right: -170px;
  bottom: 12%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.025), 0 0 0 96px rgba(255,255,255,.018);
}
.orb { position: absolute; border-radius: 50%; }
.orb-one { width: 180px; height: 180px; right: -64px; top: -70px; background: rgba(255, 210, 92, .12); }
.orb-two { width: 120px; height: 120px; left: -58px; bottom: 70px; background: rgba(255,255,255,.05); }
.story-content, .story-footer { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow i { display: inline-block; width: 20px; height: 2px; background: var(--gold); }
.story-content h1 {
  max-width: 430px;
  margin: 26px 0 18px;
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 750;
  line-height: .98;
  letter-spacing: -.055em;
}
.story-content > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.journey { margin-top: clamp(34px, 5.5vh, 56px); display: grid; gap: 7px; }
.journey-step { display: flex; align-items: center; gap: 12px; opacity: .6; }
.journey-step.active { opacity: 1; }
.journey-step > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
}
.journey-step.active > span { color: var(--maroon); background: #fff; border-color: #fff; box-shadow: 0 8px 22px rgba(55,0,3,.18); }
.journey-step div { display: grid; gap: 1px; }
.journey-step strong { font-size: 11px; font-weight: 600; }
.journey-step small { color: rgba(255,255,255,.58); font-size: 9px; font-weight: 400; }
.journey-line { width: 1px; height: 12px; margin-left: 17px; background: rgba(255,255,255,.22); }
.story-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.53);
  font-size: 8px;
  font-weight: 550;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-footer span { display: flex; align-items: center; gap: 6px; }
.story-footer span::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.form-panel {
  min-width: 0;
  min-height: 0;
  padding: 24px clamp(20px, 2.4vw, 34px);
  overflow: auto;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #d7c9c7 transparent;
}
.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}
.form-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--maroon);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.form-heading h2, .success-view h2, .otp-modal h2 {
  margin: 0;
  color: var(--maroon-dark);
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -.035em;
}
.form-heading h2 { font-size: clamp(23px, 2.2vw, 32px); line-height: 1.05; }
.form-heading p { margin: 7px 0 0; color: var(--muted); font-size: 10px; }
.form-heading b, .field b { color: var(--maroon); }
.secure-note {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: #4f7663;
  background: #edf6f0;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 550;
}
.secure-note span { margin-right: 4px; font-size: 6px; }

.admission-form {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px 16px;
}
.admission-form > fieldset:nth-of-type(1) { grid-column: 1 / -1; grid-row: 1; }
.admission-form > fieldset:nth-of-type(2) { grid-column: 1 / -1; grid-row: 2; }
.admission-form > fieldset:nth-of-type(3) { grid-column: 1 / -1; grid-row: 3; }
.admission-form > fieldset:nth-of-type(4) { grid-column: 1; grid-row: 4; }
.admission-form > .submit-row { grid-column: 2; grid-row: 4; align-self: end; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend {
  width: 100%;
  margin-bottom: 11px;
  padding: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #313a43;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}
legend span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--maroon);
  background: #f6e9e9;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .04em;
}
.section-hint { display: none; margin: -5px 0 9px; color: var(--muted); font-size: 9px; font-weight: 400; }
.field-grid { display: grid; gap: 10px; }
.two-column { grid-template-columns: 1.1fr 1.05fr 1.1fr .85fr; }
.academic-grid { grid-template-columns: 1.4fr .9fr .75fr; }
.field-wide { grid-column: auto; }
.field { min-width: 0; display: grid; gap: 5px; }
.field > span { color: #4c5661; font-size: 10px; font-weight: 450; }
.field-note { margin-top: -1px; color: #7c858d; font-size: 8px; font-weight: 400; line-height: 1.2; }
.field input, .field select {
  width: 100%;
  height: 39px;
  padding: 0 11px;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid #dfe3e7;
  border-radius: 8px;
  outline: none;
  font-size: 11px;
  font-weight: 400;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input::placeholder { color: #9ba3aa; font-weight: 400; }
.field select {
  appearance: none;
  padding-right: 30px;
  background-image: linear-gradient(45deg, transparent 50%, #7e878e 50%), linear-gradient(135deg, #7e878e 50%, transparent 50%);
  background-position: calc(100% - 16px) 17px, calc(100% - 12px) 17px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.field input:focus, .field select:focus, .mark-input:focus-within {
  border-color: rgba(158,54,58,.62);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(158,54,58,.08);
}
.phone-field {
  height: 39px;
  display: flex;
  background: #fbfbfa;
  border: 1px solid #dfe3e7;
  border-radius: 8px;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.phone-field:focus-within { border-color: rgba(158,54,58,.62); background: #fff; box-shadow: 0 0 0 3px rgba(158,54,58,.08); }
.phone-field em { padding: 0 9px; display: grid; place-items: center; color: var(--maroon); border-right: 1px solid #dfe3e7; font-size: 10px; font-style: normal; font-weight: 550; }
.phone-field input { height: 37px; border: 0; background: transparent; box-shadow: none !important; }

.marks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.mark-field {
  min-width: 0;
  min-height: 46px;
  padding: 6px 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color .18s, box-shadow .18s;
}
.mark-field:hover { border-color: #d6c0c1; box-shadow: 0 5px 15px rgba(80,34,28,.045); }
.subject-icon { display: none; }
.mark-field > span:nth-child(2) { min-width: 0; display: grid; gap: 1px; }
.mark-field strong { overflow: hidden; font-size: 9px; font-weight: 550; text-overflow: ellipsis; white-space: nowrap; }
.mark-field small { color: var(--muted); font-size: 7px; font-weight: 400; }
.mark-input { height: 31px; padding-right: 6px; display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.mark-input input { width: 34px; min-width: 0; padding: 0 2px; background: transparent; border: 0; outline: 0; text-align: right; font-size: 10px; font-weight: 450; }
.mark-input em { color: var(--muted); font-size: 9px; font-style: normal; }
.mark-input input::-webkit-inner-spin-button { display: none; }

.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.course-card {
  min-width: 0;
  min-height: 40px;
  padding: 5px 8px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 15px;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .16s, background .16s, box-shadow .16s;
}
.course-card:hover { border-color: rgba(158,54,58,.38); box-shadow: 0 4px 12px rgba(80,34,28,.05); }
.course-card.selected { border-color: rgba(158,54,58,.55); background: var(--soft-maroon); box-shadow: inset 2px 0 0 var(--maroon); }
.course-card input { position: absolute; opacity: 0; pointer-events: none; }
.course-abbr { width: 30px; height: 28px; display: grid; place-items: center; color: var(--maroon); background: #f7efef; border-radius: 6px; font-size: 8px; font-weight: 700; letter-spacing: -.01em; }
.course-card.selected .course-abbr { color: #fff; background: var(--maroon); }
.course-name { min-width: 0; color: #48515a; font-size: 8.5px; font-weight: 450; line-height: 1.25; }
.check-mark { width: 14px; height: 14px; display: grid; place-items: center; color: transparent; border: 1px solid #d3d7da; border-radius: 50%; font-size: 8px; }
.course-card.selected .check-mark { color: #fff; background: var(--maroon); border-color: var(--maroon); }
.course-error { margin: 6px 0 0; color: #b44137; font-size: 9px; outline: 0; }
.course-error.hidden { visibility: hidden; height: 0; margin: 0; }

.captcha-row { display: grid; grid-template-columns: 128px 36px minmax(190px, 1fr); gap: 8px; align-items: end; }
.captcha-art { height: 39px; position: relative; display: grid; place-items: center; overflow: hidden; user-select: none; background: #f3eadc; border: 1px solid #dfd1be; border-radius: 8px; }
.captcha-art::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(14deg, transparent 0 8px, rgba(122,38,38,.10) 9px 10px); }
.captcha-art span { position: relative; z-index: 2; color: var(--maroon-dark); font-size: 18px; font-weight: 700; letter-spacing: .22em; transform: skew(-8deg) rotate(-2deg); }
.captcha-art i { position: absolute; width: 130%; height: 1px; background: rgba(122,38,38,.25); transform: rotate(-10deg); }
.captcha-art i:nth-of-type(2) { transform: rotate(13deg); }
.captcha-art i:nth-of-type(3) { transform: rotate(3deg) translateY(7px); }
.refresh-button { height: 39px; color: var(--maroon); background: #fff; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-size: 18px; transition: transform .18s, background .18s; }
.refresh-button:hover { background: var(--soft-maroon); transform: rotate(30deg); }
.captcha-input { grid-template-rows: 0 39px; gap: 0; }
.captcha-input > span { height: 0; transform: translateY(-16px); }

.submit-row { display: flex; align-items: stretch; justify-content: flex-end; flex-direction: column; gap: 8px; padding-top: 0; }
.submit-row p { max-width: 360px; margin: 0; color: var(--muted); font-size: 8.5px; font-weight: 400; line-height: 1.4; }
.submit-row .submit-button { width: 100%; }
.submit-button, .verify-button {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: var(--maroon);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(122,38,38,.17);
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  transition: transform .18s, background .18s, box-shadow .18s;
}
.submit-button:hover, .verify-button:hover { background: var(--maroon-dark); transform: translateY(-1px); box-shadow: 0 11px 22px rgba(122,38,38,.22); }
.submit-button:disabled, .verify-button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.arrow-icon { font-size: 17px; font-weight: 400; transition: transform .18s; }
.submit-button:hover .arrow-icon, .verify-button:hover .arrow-icon { transform: translateX(3px); }

.success-view { height: 100%; min-height: 480px; padding: 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; animation: rise-in .45s ease both; }
.success-icon { width: 62px; height: 62px; margin-bottom: 20px; display: grid; place-items: center; color: var(--green); background: #eaf5ef; border: 1px solid #d2e8dc; border-radius: 50%; box-shadow: 0 10px 30px rgba(36,123,98,.12); font-size: 26px; }
.success-view h2 { font-size: clamp(28px, 3.5vw, 42px); }
.success-view > p { max-width: 460px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.reference-card { margin-top: 18px; padding: 12px 15px; display: flex; align-items: center; justify-content: space-between; gap: 64px; color: var(--muted); background: #fbfbfa; border: 1px solid var(--line); border-radius: 9px; font-size: 10px; }
.reference-card strong { color: var(--green); }

.page-footer { width: min(1500px, 100%); height: 30px; flex: 0 0 30px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #8a9096; font-size: 8px; letter-spacing: .02em; }

.modal-backdrop { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 20px; background: rgba(35,15,16,.62); backdrop-filter: blur(10px); animation: fade-in .22s ease both; }
.otp-modal { width: min(430px, 100%); padding: 34px; position: relative; text-align: center; background: #fff; border-radius: 18px; box-shadow: 0 26px 80px rgba(25,4,4,.30); animation: rise-in .32s ease both; }
.modal-close { width: 32px; height: 32px; position: absolute; top: 13px; right: 14px; color: #746965; background: #f6f1ed; border: 0; border-radius: 50%; cursor: pointer; font-size: 20px; line-height: 1; }
.modal-close:hover { color: var(--maroon); background: #eee3dd; }
.otp-badge { width: 54px; height: 54px; margin: 0 auto 18px; display: grid; place-items: center; color: var(--maroon); background: #f4e9e7; border-radius: 14px; font-size: 22px; font-weight: 650; transform: rotate(-4deg); }
.otp-badge.verified { color: var(--green); background: #eaf5ef; }
.otp-modal h2 { font-size: 28px; }
.otp-copy { max-width: 350px; margin: 12px auto 14px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.otp-copy strong { color: var(--ink); }
.demo-code { display: inline-block; margin-bottom: 17px; padding: 6px 10px; color: #7a5a23; background: #fff8e7; border-radius: 7px; font-size: 9px; }
.otp-boxes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.otp-boxes input { width: 100%; min-width: 0; height: 49px; color: var(--maroon); background: #fbfbfa; border: 1px solid var(--line); border-radius: 8px; outline: 0; text-align: center; font-size: 17px; font-weight: 650; }
.otp-boxes input:focus { background: #fff; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(158,54,58,.08); }
.otp-error { margin: 9px 0 0; color: #b44137; font-size: 9px; }
.verify-button { width: 100%; margin-top: 17px; }
.resend-row { margin-top: 15px; display: flex; justify-content: center; gap: 7px; color: var(--muted); font-size: 9px; }
.resend-row span:last-child { color: var(--maroon); font-weight: 600; }
.resend-row button, .skip-button { padding: 0; color: var(--maroon); background: none; border: 0; cursor: pointer; font: inherit; font-weight: 600; }
.skip-button { margin-top: 17px; color: #827773; text-decoration: underline; text-underline-offset: 3px; }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (min-width: 1181px) and (max-height: 760px) {
  .form-panel { padding-top: 17px; padding-bottom: 17px; }
  .form-heading { margin-bottom: 8px; }
  .form-heading h2 { font-size: 25px; }
  .form-heading p { margin-top: 4px; }
  .admission-form { gap: 7px 16px; }
  legend { margin-bottom: 7px; padding-bottom: 5px; }
  .field { gap: 3px; }
  .field input, .field select, .phone-field { height: 34px; }
  .phone-field input { height: 32px; }
  .field select { background-position: calc(100% - 16px) 15px, calc(100% - 12px) 15px; }
  .field-note { font-size: 7px; }
  .marks-grid { margin-top: 6px; }
  .mark-field { min-height: 39px; padding-top: 4px; padding-bottom: 4px; }
  .mark-input { height: 28px; }
  .course-grid { gap: 4px 6px; }
  .course-card { min-height: 34px; padding-top: 3px; padding-bottom: 3px; }
  .course-abbr { height: 24px; }
  .captcha-art, .refresh-button { height: 34px; }
  .captcha-input { grid-template-rows: 0 34px; }
  .submit-button, .verify-button { min-height: 36px; }
}

@media (max-width: 1180px) {
  .site-shell { height: auto; min-height: 100dvh; overflow: visible; }
  .admission-stage { flex: none; grid-template-columns: minmax(245px, 29%) minmax(0, 1fr); }
  .form-panel { overflow: visible; }
  .two-column { grid-template-columns: repeat(2, 1fr); }
  .field-wide { grid-column: 1 / -1; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .site-shell { padding: 0; }
  .site-header { height: 66px; flex: 0 0 66px; padding: 0 16px; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-copy strong { max-width: 260px; font-size: 14px; line-height: 1.08; }
  .brand-copy small, .header-meta { display: none; }
  .admission-stage { grid-template-columns: 1fr; border-right: 0; border-left: 0; border-radius: 0; }
  .story-panel { min-height: 350px; padding: 34px 24px; }
  .story-panel::before { left: 24px; height: 54px; }
  .story-content h1 { max-width: 520px; margin: 22px 0 14px; font-size: clamp(38px, 10vw, 58px); }
  .story-content > p { max-width: 560px; }
  .journey { margin-top: 28px; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .journey-line { display: none; }
  .journey-step { align-items: flex-start; }
  .story-footer { padding-top: 26px; }
  .form-panel { padding: 30px 22px; }
  .section-hint { display: block; }
  .admission-form { grid-template-columns: 1fr; gap: 16px; }
  .admission-form > fieldset:nth-of-type(n), .admission-form > .submit-row { grid-column: auto; grid-row: auto; }
  .page-footer { height: auto; min-height: 54px; padding: 16px 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .story-panel { min-height: 430px; }
  .journey { grid-template-columns: 1fr; }
  .journey-step { align-items: center; }
  .form-heading { display: block; }
  .secure-note { display: inline-block; margin-top: 12px; }
  .two-column, .academic-grid, .marks-grid, .course-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .captcha-row { grid-template-columns: 1fr 40px; }
  .captcha-input { grid-column: 1 / -1; grid-template-rows: auto 39px; gap: 5px; margin-top: 8px; }
  .captcha-input > span { height: auto; transform: none; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .otp-modal { padding: 32px 20px 26px; }
  .otp-boxes { gap: 5px; }
  .otp-boxes input { height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
