:root {
  --saffron: #e87500;
  --saffron-dark: #c95f00;
  --green: #198754;
  --green-dark: #146c43;
  --navy: #182b3a;
  --text: #344454;
  --muted: #6b7280;
  --border: #dfe3e7;
  --surface: #ffffff;
  --soft: #f8fafb;
  --error: #c62828;
  --error-bg: #fff0f0;
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(24, 43, 58, 0.14);
  --transition: 0.2s ease;
  --font-xl: 28px;
  --font-lg: 24px;
  --font-md: 20px;
  --font-sm: 17px;
  --font-base: 15px;
  --font-body: 13px;
  --font-small: 12px;
  --font-tiny: 11px;
  --font-micro: 10px;
  --font-nano: 9px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  min-height: 100%;
}

.body-image {
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  border: 0;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.verify-page {
  width: 100%;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 50px;
}
.verify-card {
    width: 100%;
    max-width: 525px;
    overflow: hidden;

    /* GLASS */
    background: rgba(255, 255, 255, 0.62) !important;

    border: 1px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 70px rgba(24, 43, 58, 0.22),
        0 8px 25px rgba(24, 43, 58, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);

    position: relative;
}
.verify-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.06) 45%,
            rgba(255, 255, 255, 0.16) 100%
        );

    pointer-events: none;
    z-index: 0;
}

.verify-card > * {
    position: relative;
    z-index: 1;
}
.card-content {
  padding: 32px 34px 26px;
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7b8490;
  font-size: var(--font-tiny);
  font-weight: 700;
  text-transform: uppercase;
}
.step-dot .num {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e1e4e8;
  color: #7b8490;
  font-size: var(--font-tiny);
  font-weight: 800;
}
.step-dot.active {
  color: var(--navy);
}
.step-dot.active .num {
  background: var(--green);
  color: #fff;
}
.step-rule {
  width: 38px;
  height: 1px;
  background: #d8dde1;
}
.verify-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.verify-logo {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: #fff;
  color: #c84c1c;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 5px 18px rgba(24, 43, 58, 0.12);
}
.verify-header {
  margin-bottom: 24px;
  text-align: center;
}
.verify-header h1 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(22px, 3vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}
.verify-header p {
  max-width: 410px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.65;
}
.server-alert {
  width: 100%;
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid #f2c7c7;
  border-radius: 7px;
  background: var(--error-bg);
  color: var(--error);
  font-size: var(--font-body);
  line-height: 1.55;
}
.server-alert.show {
  display: flex;
}
.server-alert > span {
  flex-shrink: 0;
  font-size: 15px;
}
.server-alert > div {
  min-width: 0;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: var(--font-body);
  font-weight: 700;
}
.required {
  color: var(--error);
}
.mobile-wrapper {
  width: 100%;
  height: 54px;
  display: flex;
  overflow: hidden;
  border: 1px solid #cfd5da;
  border-radius: 8px;
  background: #fff;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.mobile-wrapper:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 117, 0, 0.12);
}
.mobile-wrapper.input-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.08);
}
.country-code {
  width: 105px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 0 13px;
  border-right: 1px solid #e1e4e7;
  background: #f8f9fa;
  color: #59636d;
  font-size: var(--font-body);
}
.india-flag {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  flex-shrink: 0;
}
.india-flag span {
  flex: 1;
}
.india-flag span:nth-child(1) {
  background: #ff9933;
}
.india-flag span:nth-child(2) {
  position: relative;
  background: #fff;
}
.india-flag span:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 50%;
  border: 1px solid #1a4b9b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.india-flag span:nth-child(3) {
  background: #138808;
}
.mobile-input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: var(--font-body);
}
.mobile-input::placeholder {
  color: #a1a8af;
}
.mobile-input::-webkit-outer-spin-button,
.mobile-input::-webkit-inner-spin-button {
  margin: 0;
}
.send-otp-btn {
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  background: var(--saffron);
  color: #fff;
  font-size: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.send-otp-btn:hover:not(:disabled) {
  background: var(--saffron-dark);
}
.send-otp-btn:active:not(:disabled) {
  transform: scale(0.98);
}
.send-otp-btn:disabled {
  background: #bdb5ad;
  cursor: not-allowed;
}
.send-otp-btn.is-loading {
  cursor: wait;
}
.btn-spinner {
  width: 14px;
  height: 14px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: signup-spinner 0.7s linear infinite;
}
.send-otp-btn.is-loading .btn-spinner {
  display: block;
}
@keyframes signup-spinner {
  to {
    transform: rotate(360deg);
  }
}
.field-error {
  display: none;
  margin-top: 7px;
  color: var(--error);
  font-size: var(--font-tiny);
  line-height: 1.5;
}
.field-error.show {
  display: block;
}
.certificate-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}
.certificate-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.certificate-row label {
  color: #59636d;
  font-size: var(--font-tiny);
  line-height: 1.6;
  cursor: pointer;
}
.certificate-error {
  display: none;
  margin-top: 6px;
  margin-left: 27px;
  color: var(--error);
  font-size: var(--font-tiny);
}
.certificate-error.show {
  display: block;
}

/* ── Back button (shared across OTP / email-verify pages) ── */
.email-verify-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 6px 4px;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted, #6b7280);
    cursor: pointer;
    border-radius: var(--radius-sm, 7px);
    transition: color 0.18s ease;
    line-height: 1;
    text-decoration: none;
}

.email-verify-back-btn:hover {
    color: var(--navy, #182b3a);
}

.email-verify-back-btn svg {
    flex-shrink: 0;
    transition: transform 0.18s ease;
}

.email-verify-back-btn:hover svg {
    transform: translateX(-3px);
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 22px;
  padding: 13px 14px;
  border: 1px solid #e4e7ea;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  color: #68727d;
  font-size: var(--font-tiny);
  line-height: 1.55;
}
.security-note > span {
  flex-shrink: 0;
  font-size: 14px;
}
.login-redirect {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 15px 20px;
  border-top: 1px solid rgba(224, 218, 211, 0.8);
  background: rgba(255, 255, 255, 0.38);
  color: #59636d;
  font-size: var(--font-small);
  line-height: 1.5;
  text-align: center;
}
.login-redirect a {
  color: var(--saffron);
  font-weight: 700;
  text-decoration: none;
  transition:
    color var(--transition),
    text-decoration var(--transition);
}
.login-redirect a:hover {
  color: var(--saffron-dark);
  text-decoration: underline;
}
.hindi-text {
  margin-left: 3px;
}
.card-footer {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--saffron) 0%,
    var(--saffron) 50%,
    var(--green) 50%,
    var(--green) 100%
  );
}
@media (max-width: 768px) {
  .verify-page {
    min-height: calc(100vh - 66px);
    padding: 28px 15px 40px;
  }
  .verify-card {
    max-width: 500px;
  }
  .card-content {
    padding: 28px 26px 24px;
  }
}
@media (max-width: 600px) {
  .verify-page {
    align-items: flex-start;
    padding: 24px 12px 30px;
  }
  .verify-card {
    border-radius: 16px;
  }
  .card-content {
    padding: 24px 18px 22px;
  }
  .step-indicator {
    margin-bottom: 24px;
  }
  .verify-logo {
    width: 68px;
    height: 68px;
    font-size: 18px;
  }
  .verify-header {
    margin-bottom: 20px;
  }
  .verify-header h1 {
    font-size: 21px;
  }
  .verify-header p {
    font-size: 12px;
  }
  .mobile-wrapper {
    height: auto;
    flex-wrap: wrap;
  }
  .country-code {
    width: 92px;
    height: 52px;
  }
  .mobile-input {
    width: calc(100% - 92px);
    height: 52px;
    flex: 1;
  }
  .send-otp-btn {
    width: 100%;
    height: 48px;
  }
  .certificate-row {
    margin-top: 18px;
  }
  .certificate-row label {
    font-size: 10.5px;
  }
  .security-note {
    margin-top: 18px;
  }
  .login-redirect {
    padding: 14px 12px;
    font-size: 11.5px;
  }
}
@media (max-width: 400px) {
  .verify-page {
    padding: 18px 8px 24px;
  }
  .verify-card {
    border-radius: 14px;
  }
  .card-content {
    padding: 22px 14px 20px;
  }
  .step-indicator {
    gap: 8px;
  }
  .step-rule {
    width: 25px;
  }
  .step-dot {
    font-size: 10px;
  }
  .step-dot .num {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .verify-logo {
    width: 62px;
    height: 62px;
  }
  .verify-header h1 {
    font-size: 19px;
  }
  .verify-header p {
    font-size: 11.5px;
  }
  .country-code {
    width: 85px;
    padding: 0 10px;
  }
  .mobile-input {
    width: calc(100% - 85px);
    padding: 0 10px;
    font-size: 13px;
  }
  .send-otp-btn {
    height: 46px;
    font-size: 12px;
  }
  .certificate-row label {
    font-size: 10px;
  }
  .security-note {
    padding: 11px 12px;
    font-size: 10px;
  }
}
@media (max-width: 330px) {
  .card-content {
    padding-left: 11px;
    padding-right: 11px;
  }
  .verify-header h1 {
    font-size: 18px;
  }
  .country-code {
    width: 78px;
    gap: 6px;
    font-size: 12px;
  }
  .mobile-input {
    width: calc(100% - 78px);
    font-size: 12px;
  }
  .certificate-row {
    gap: 7px;
  }
  .certificate-row label {
    font-size: 9.5px;
  }
  .login-redirect {
    font-size: 10.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
  --saffron: #e87500;
  --saffron-dark: #c95f00;
  --green: #198754;
  --green-dark: #146c43;
  --navy: #182b3a;
  --text: #344454;
  --muted: #6b7280;
  --border: #dfe3e7;
  --surface: #ffffff;
  --soft: #f8fafb;
  --error: #c62828;
  --error-bg: #fff0f0;
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(24, 43, 58, 0.14);
  --transition: 0.2s ease;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background-color: #f4f6f8;
}
button,
input {
  font-family: inherit;
}
button {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: rgba(232, 117, 0, 0.18);
}
.verify-page {
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
}
.verify-card {
  width: 100%;
  max-width: 525px;
  background: var(--surface);
  border: 1px solid rgba(24, 43, 58, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-content {
  padding: 32px 36px 30px;
}
.step-indicator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.step-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9aa3ab;
  font-size: var(--font-tiny);
  font-weight: 600;
  white-space: nowrap;
}
.step-dot .num {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef1f3;
  color: #7b858e;
  font-size: var(--font-tiny);
  font-weight: 700;
}
.step-dot.active {
  color: var(--saffron);
}
.step-dot.active .num {
  background: var(--saffron);
  color: #fff;
}
.step-rule {
  width: 70px;
  height: 1px;
  margin: 0 10px;
  background: #dfe3e7;
}
.otp-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(25, 135, 84, 0.1);
  color: var(--green);
  font-size: 27px;
  font-weight: 700;
}
.verify-header {
  text-align: center;
  margin-bottom: 24px;
}
.verify-header h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}
.verify-header p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-body);
  line-height: 1.6;
}
.server-alert {
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid #f0bcbc;
  border-radius: var(--radius-sm);
  background: var(--error-bg);
  color: var(--error);
  font-size: var(--font-body);
  line-height: 1.5;
}
.server-alert.show {
  display: flex;
}
.server-alert > span {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.3;
}
.otp-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: var(--font-body);
  text-align: center;
}
.otp-mobile strong {
  color: var(--navy);
  font-weight: 700;
}
.otp-mobile form {
  margin-left: 5px;
}
.change-number {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--saffron);
  font-size: var(--font-small);
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition);
}
.change-number:hover {
  color: var(--saffron-dark);
  text-decoration: underline;
}
.otp-label {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: var(--font-body);
  font-weight: 700;
  text-align: center;
}
.otp-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.otp-input {
  width: 52px;
  height: 58px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.otp-input:hover {
  border-color: #c6cdd3;
}
.otp-input:focus {
  border-color: var(--saffron);
  background: #fffdf9;
  box-shadow: 0 0 0 3px rgba(232, 117, 0, 0.12);
}
.otp-input.input-error {
  border-color: var(--error);
}
.otp-error {
  display: none;
  margin: 7px 0 14px;
  color: var(--error);
  font-size: var(--font-small);
  line-height: 1.4;
  text-align: center;
}
.otp-error.show {
  display: block;
}
.otp-timer {
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: var(--font-body);
  text-align: center;
}
.otp-timer strong {
  color: var(--saffron);
  font-weight: 700;
}
.verify-btn {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--saffron);
  color: #fff;
  font-size: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}
.verify-btn:hover:not(:disabled) {
  background: var(--saffron-dark);
  box-shadow: 0 8px 20px rgba(232, 117, 0, 0.22);
  transform: translateY(-1px);
}
.verify-btn:active:not(:disabled) {
  transform: translateY(0);
}
.verify-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.verify-btn.is-loading {
  cursor: wait;
}
.btn-spinner {
  width: 15px;
  height: 15px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: buttonSpin 0.7s linear infinite;
}
.verify-btn.is-loading .btn-spinner {
  display: block;
}
@keyframes buttonSpin {
  to {
    transform: rotate(360deg);
  }
}
.resend-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
  color: var(--muted);
  font-size: var(--font-small);
  text-align: center;
}
.resend-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--saffron);
  font-size: var(--font-small);
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition);
}
.resend-btn:hover:not(:disabled) {
  color: var(--saffron-dark);
  text-decoration: underline;
}
.resend-btn:disabled {
  color: #aeb5bb;
  cursor: not-allowed;
}
.security-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #edf0f2;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
.security-note > span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
}
.card-footer {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--saffron) 0%,
    var(--saffron) 50%,
    var(--green) 50%,
    var(--green) 100%
  );
}
@media (max-width: 768px) {
  .verify-page {
    min-height: calc(100vh - 75px);
    padding: 30px 16px;
  }
  .card-content {
    padding: 28px 28px 26px;
  }
  .verify-header h1 {
    font-size: 25px;
  }
  .otp-input {
    width: 49px;
    height: 55px;
  }
}
@media (max-width: 600px) {
  .verify-page {
    align-items: flex-start;
    padding: 22px 12px 30px;
  }
  .verify-card {
    border-radius: 16px;
  }
  .card-content {
    padding: 25px 20px 24px;
  }
  .step-indicator {
    margin-bottom: 25px;
  }
  .step-rule {
    width: 45px;
    margin: 0 7px;
  }
  .verify-header h1 {
    font-size: 23px;
  }
  .verify-header p {
    font-size: 13px;
  }
  .otp-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    font-size: 24px;
  }
  .otp-inputs {
    gap: 7px;
  }
  .otp-input {
    width: 45px;
    height: 52px;
    border-radius: 10px;
    font-size: 20px;
  }
  .otp-mobile {
    font-size: 12px;
  }
  .security-note {
    font-size: 10.5px;
  }
}
@media (max-width: 420px) {
  .verify-page {
    padding: 15px 8px 25px;
  }
  .card-content {
    padding: 22px 15px 22px;
  }
  .step-dot {
    font-size: 11px;
  }
  .step-dot .num {
    width: 27px;
    height: 27px;
  }
  .step-rule {
    width: 32px;
    margin: 0 5px;
  }
  .verify-header h1 {
    font-size: 21px;
  }
  .otp-inputs {
    gap: 5px;
  }
  .otp-input {
    width: 41px;
    height: 49px;
    font-size: 18px;
  }
  .otp-mobile {
    flex-direction: column;
    gap: 3px;
  }
  .otp-mobile form {
    margin-left: 0;
  }
  .resend-section {
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 330px) {
  .card-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .otp-inputs {
    gap: 4px;
  }
  .otp-input {
    width: 38px;
    height: 46px;
    font-size: 17px;
  }
  .step-rule {
    width: 25px;
  }
}
.verify-btn:focus-visible,
.resend-btn:focus-visible,
.change-number:focus-visible,
.otp-input:focus-visible {
  outline: 3px solid rgba(232, 117, 0, 0.25);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* =====================================================
   LANGUAGE SWITCHER
   (shared by login, registration, verify-otp, verify-email-otp)
===================================================== */

/* Outer row — right-aligned, spacing below */
.verify-card .language-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 18px;
    /* reset header-level styles that common.css sets */
    margin-right: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    gap: 0;
}

/* The pill itself — wraps both buttons */
.verify-card .language-switcher .language-toggle,
.verify-card .language-switcher {
    /* If there's no .language-toggle, the switcher IS the pill */
}

/* Pill container — both buttons live inside this */
.verify-card .language-switcher {
    /* make it a tight inline pill */
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
}

.verify-card .language-switcher > .language-btn:first-child,
.verify-card .language-switcher > .language-btn:last-child,
.verify-card .language-switcher .language-btn {
    /* individual button resets handled below */
}

/* Pill wrapper around the two buttons */
.verify-card .language-switcher::after {
    display: none;
}

/* ---- actual pill trick: wrap buttons in a display:inline-flex pill ---- */
/* We scope to .verify-card so it doesn't affect the header switcher */
.verify-card .language-switcher {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.verify-card .language-switcher > * {
    /* nothing — buttons styled below */
}

/* Re-wrap the two buttons as a pill using a pseudo-container via outline on switcher */
.verify-card .language-switcher {
    background: transparent;
    border: none;
    padding: 0;
    gap: 0;
    margin-right: 0;
}

/* The pill is formed by giving the switcher itself pill styling
   and making it inline (not full-width flex) */
.verify-card .language-switcher {
    width: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border: 1px solid #dfe3e7;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(24, 43, 58, 0.08);
    /* make it sit on the right */
    margin-left: auto;
    margin-bottom: 18px;
}

.verify-card .language-btn {
    min-width: 74px;
    padding: 7px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #6b7280;
    font-family: "Inter", "Noto Sans Devanagari", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.verify-card .language-btn:hover {
    color: #182b3a;
}

.verify-card .language-btn.active {
    background: #e87500;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(232, 117, 0, 0.25);
}

.verify-card .language-btn:focus-visible {
    outline: 2px solid #e87500;
    outline-offset: 2px;
}

/* AI+ badge */
.verify-card .ai-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.02em;
    vertical-align: super;
    line-height: 1;
    color: inherit;
    opacity: 0.75;
    margin-left: 1px;
}

/* Hindi font overrides */
html[lang="hi"] body {
    font-family: "Noto Sans Devanagari", "Inter", sans-serif;
}

html[lang="hi"] h1,
html[lang="hi"] .verify-header p,
html[lang="hi"] .form-label,
html[lang="hi"] .certificate-row label,
html[lang="hi"] .otp-mobile,
html[lang="hi"] .otp-label,
html[lang="hi"] .otp-timer,
html[lang="hi"] .resend-section,
html[lang="hi"] .security-note,
html[lang="hi"] .login-redirect {
    font-family: "Noto Sans Devanagari", "Inter", sans-serif;
}

@media (max-width: 600px) {
    .verify-card .language-switcher {
        margin-bottom: 14px;
    }

    .verify-card .language-btn {
        min-width: 64px;
        padding: 7px 11px;
        font-size: 11px;
    }
}
.verify-card .language-switcher {
    display: flex !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    justify-content: flex-end !important;
    align-items: center;
}