
:root {
  --brand-navy: #263d86;
  --brand-navy-dark: #1c2d67;
  --brand-orange: #f5a623;
  --brand-orange-dark: #df8f08;

  --ink: #17213f;
  --muted: #66708a;
  --muted-2: #8790a5;
  --line: #e5e8f0;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --success: #1f9d68;
  --danger: #cf3f4b;
  --shadow: 0 28px 80px rgba(26, 43, 91, 0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 166, 35, 0.08), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(38, 61, 134, 0.09), transparent 30%),
    #f7f9fd;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 42px 20px 28px;
}

.registration-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(38, 61, 134, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  webkit-backdrop-filter: blur(10px);
}

.registration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-orange), var(--brand-navy));
}

.brand-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(38, 61, 134, 0.12), rgba(245, 166, 35, 0.12));
  color: var(--brand-navy);
}

.brand-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  right: 8px;
  top: 8px;
  border-radius: 999px;
  background: var(--brand-orange);
  box-shadow: 0 0 0 5px rgba(245, 166, 35, 0.13);
}

.brand-star {
  font-size: 28px;
  line-height: 1;
}

.form-header {
  padding: 56px 70px 28px;
  max-width: 900px;
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.eyebrow a:hover {
  color: #f6a623;
  opacity: 0.85;
}

.eyebrow a:active {
  opacity: 0.7;
}
.form-header h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--brand-navy-dark);
}

.intro {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---------- Progress ---------- */

.progress-wrap {
  position: relative;
  padding: 14px 70px 42px;
}

.progress-line {
  position: absolute;
  left: 120px;
  right: 120px;
  top: 29px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9ecf3;
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-orange));
  transition: width 0.55s var(--ease);
}

.progress-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.progress-step {
  appearance: none;
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted-2);
  padding: 0;
  transition: transform 0.25s var(--ease);
}

.progress-step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid #dfe3eb;
  background: #fff;
  color: var(--muted-2);
  font-weight: 700;
  transition: all 0.35s var(--ease);
}

.progress-step small {
  font-size: 0.75rem;
  font-weight: 600;
}

.progress-step:hover {
  transform: translateY(-2px);
}

.progress-step.active span,
.progress-step.complete span {
  color: #fff;
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  box-shadow: 0 10px 20px rgba(38, 61, 134, 0.18);
}

.progress-step.active small,
.progress-step.complete small {
  color: var(--brand-navy);
}

/* ---------- Form steps ---------- */

.form-step {
  display: none;
  padding: 4px 70px 64px;
  animation: stepIn 0.55s var(--ease) both;
}

.form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.step-kicker {
  margin: 0 0 7px;
  color: var(--brand-orange-dark);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.step-heading h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--brand-navy-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}

.step-heading p:not(.step-kicker) {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.step-badge,
.payment-status-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: rgba(38, 61, 134, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
}

/* ---------- Inputs ---------- */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field,
.choice-group {
  min-width: 0;
}

.full {
  grid-column: 1 / -1;
}

.field label,
.choice-group legend {
  display: block;
  margin-bottom: 9px;
  color: #2f3751;
  font-size: 0.9rem;
  font-weight: 700;
}

.field label span,
.choice-group legend > span {
  color: var(--brand-orange-dark);
}

.field label em,
legend small {
  color: var(--muted-2);
  font-style: normal;
  font-weight: 500;
  font-size: 0.78rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  outline: 0;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s var(--ease), background 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a8aec0;
}

.field input:hover,
.field textarea:hover {
  border-color: #cbd1df;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 4px rgba(38, 61, 134, 0.1);
  transform: translateY(-1px);
}

.field.invalid input,
.field.invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(207, 63, 75, 0.08);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: var(--danger);
  font-size: 0.77rem;
}

/* ---------- Choice cards ---------- */

.choice-group {
  padding: 0;
  margin: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-grid {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 5px;
}

.checkbox-grid::-webkit-scrollbar {
  width: 8px;
}

.checkbox-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d9deea;
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: #2e3650;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 61, 134, 0.35);
  box-shadow: 0 12px 28px rgba(35, 49, 94, 0.08);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card.compact {
  min-height: 58px;
}

.choice-card > span:last-child {
  line-height: 1.4;
  font-size: 0.9rem;
}

.choice-card strong {
  display: block;
  margin-bottom: 3px;
}

.choice-card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.custom-radio,
.custom-check {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd1df;
  background: #fff;
  transition: all 0.25s var(--ease);
}

.custom-radio {
  border-radius: 50%;
}

.custom-check {
  border-radius: 6px;
}

.choice-card input:checked + .custom-radio,
.choice-card input:checked + .custom-check {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  box-shadow: 0 0 0 4px rgba(38, 61, 134, 0.08);
}

.choice-card input:checked + .custom-radio::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.choice-card input:checked + .custom-check::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.choice-card:has(input:checked) {
  border-color: rgba(38, 61, 134, 0.4);
  background: linear-gradient(135deg, rgba(38, 61, 134, 0.05), rgba(245, 166, 35, 0.035));
}

.choice-group.invalid .choice-card {
  border-color: rgba(207, 63, 75, 0.25);
}

.conditional-field {
  margin-top: 13px;
  padding: 14px;
  border: 1px dashed #d7ddea;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.conditional-field.hidden,
.hidden {
  display: none !important;
}

/* ---------- Payment ---------- */

.payment-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.payment-card,
.upload-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(25, 40, 82, 0.05);
}

.payment-card {
  padding: 24px;
  background:
    radial-gradient(circle at 90% 5%, rgba(245, 166, 35, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(38, 61, 134, 0.04), rgba(255, 255, 255, 0.8));
}

.payment-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mini-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.payment-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: var(--brand-navy-dark);
}

.account-box {
  margin-top: 20px;
  border: 1px solid rgba(38, 61, 134, 0.1);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid #eef0f5;
}

.account-row:last-child {
  border-bottom: 0;
}

.account-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.account-row strong {
  text-align: right;
  color: var(--brand-navy-dark);
  font-size: 0.86rem;
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.08);
}

.note-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.payment-note p {
  margin: 0;
  color: #626b81;
  font-size: 0.8rem;
  line-height: 1.55;
}

.upload-card {
  padding: 24px;
}

.upload-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(38, 61, 134, 0.08);
  color: var(--brand-navy);
  font-size: 1.35rem;
  font-weight: 800;
}

.upload-card h3 {
  margin: 0 0 5px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--brand-navy-dark);
}

.upload-card > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.file-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 165px;
  margin-top: 20px;
  padding: 20px;
  border: 1.5px dashed #cbd2e2;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcfe, #f8f9fc);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.file-dropzone:hover {
  border-color: var(--brand-navy);
  background: rgba(38, 61, 134, 0.035);
  transform: translateY(-2px);
}

.file-dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-dropzone-main {
  color: var(--brand-navy);
  font-weight: 700;
}

.file-dropzone-sub {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 0.75rem;
}

.file-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid #e2e6ef;
  border-radius: 12px;
  background: #fbfcff;
}

.file-preview strong {
  display: block;
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
}

.file-preview small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.remove-file {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f0f2f7;
  color: #5f6880;
  font-size: 1.15rem;
  transition: all 0.2s ease;
}

.remove-file:hover {
  color: #fff;
  background: var(--danger);
  transform: rotate(4deg);
}

.field-help {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 0.73rem;
}

.payment-fields {
  margin-top: 22px;
}

/* ---------- Review & buttons ---------- */

.review-box {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(38, 61, 134, 0.12);
  border-radius: 16px;
  background: rgba(38, 61, 134, 0.035);
}

.review-box > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.review-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy-dark);
}

.review-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.submit-status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 600;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
}

.single-action {
  justify-content: flex-end;
}

.btn {
  position: relative;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(245, 166, 35, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
  box-shadow: 0 12px 25px rgba(38, 61, 134, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(38, 61, 134, 0.24);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

.btn-secondary {
  color: var(--brand-navy);
  background: #fff;
  border: 1px solid #dce1eb;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 61, 134, 0.28);
  background: rgba(38, 61, 134, 0.035);
}

.submit-btn {
  min-width: 190px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ---------- Success ---------- */

.success-screen {
  position: relative;
  display: none;
  min-height: 560px;
  overflow: hidden;
  padding: 70px 70px 80px;
  text-align: center;
  animation: successIn 0.65s var(--ease) both;
}

.success-screen.show {
  display: grid;
  place-items: center;
  align-content: center;
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(38, 61, 134, 0.09);
  pointer-events: none;
}

.orbit-one {
  width: 500px;
  height: 500px;
  right: -230px;
  top: -220px;
  animation: floatOrbit 8s ease-in-out infinite;
}

.orbit-two {
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: -150px;
  border-color: rgba(245, 166, 35, 0.16);
  animation: floatOrbit 10s ease-in-out infinite reverse;
}

@keyframes floatOrbit {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 18px, 0);
  }
}

.success-check-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
}

.success-check-wrap::before,
.success-check-wrap::after {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 50%;
  border: 1px solid rgba(38, 61, 134, 0.12);
  animation: pulseRing 2.2s ease-out infinite;
}

.success-check-wrap::after {
  inset: -22px;
  animation-delay: 0.7s;
}

@keyframes pulseRing {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

.success-check {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-navy), #3558b8);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(38, 61, 134, 0.24);
  animation: pop 0.7s var(--ease) both;
}

@keyframes pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-screen h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Poppins", sans-serif;
  color: var(--brand-navy-dark);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.success-message {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.success-summary {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.success-summary > div {
  padding: 16px;
  border: 1px solid #e7eaf1;
  border-radius: 15px;
  text-align: left;
  background: #fbfcff;
}

.success-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.success-summary strong {
  color: var(--brand-navy-dark);
  font-size: 0.88rem;
}

.success-note {
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 8px 0;
  color: #7c8497;
  font-size: 0.74rem;
}

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  .form-header,
  .form-step {
    padding-left: 34px;
    padding-right: 34px;
  }

  .progress-wrap {
    padding-left: 34px;
    padding-right: 34px;
  }

  .progress-line {
    left: 86px;
    right: 86px;
  }

  .form-grid,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .choice-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px 10px 20px;
  }

  .registration-card {
    border-radius: 22px;
  }

  .brand-mark {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .brand-star {
    font-size: 24px;
  }

  .form-header {
    padding: 44px 20px 22px;
  }

  .form-header h1 {
    font-size: 1.8rem;
    max-width: 92%;
  }

  .intro {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .progress-wrap {
    padding: 8px 18px 30px;
  }

  .progress-line {
    left: 56px;
    right: 56px;
    top: 23px;
  }

  .progress-step span {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .progress-step small {
    font-size: 0.68rem;
  }

  .form-step {
    padding: 0 20px 40px;
  }

  .step-heading {
    display: block;
    margin-bottom: 24px;
  }

  .step-badge {
    display: inline-block;
    margin-top: 12px;
  }

  .form-grid,
  .choice-grid.two,
  .choice-grid.three,
  .success-summary {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 68px;
  }

  .checkbox-grid {
    max-height: none;
    overflow: visible;
  }

  .payment-card,
  .upload-card {
    padding: 18px;
  }

  .account-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .account-row strong {
    text-align: left;
  }

  .step-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .btn,
  .submit-btn {
    width: 100%;
  }

  .success-screen {
    min-height: 620px;
    padding: 50px 20px 60px;
  }

  .page-footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
