*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #FF8516;
      --orange-hover: #e6730d;
      --border: #e0e0e0;
      --text-muted: #888;
      --text-dark: #000;
      --bg-page: #1c1c1e;
      --card-bg: #ffffff;
      --input-bg: #ffffff;
      --radius-pill: 40px;
      --radius-input: 40px;
      --shadow-card: 0 8px 40px rgba(0,0,0,0.18);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      /* min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center; */
      min-height: 100vh;
      overflow-y: auto; 
    }

    /* ── Card ── */
    .login-card {
      padding: 40px 35px;
      width: 100%;
      max-width: 440px;
      margin: 0 auto;   
    }

    /* ── Logo ── */
    .logo-wrap {
      text-align: center;
      margin-bottom: 20px;
    }

    /* ── Heading ── */
    .login-card h1 {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 7px;
      letter-spacing: 1.68px;
    }
    .login-card .subtitle {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 35px;
      letter-spacing: 0.96px;
    }

    /* ── Toggle Tabs ── */
    .tab-toggle {
      position: relative;
      display: flex;
      background: #F7F7F7;
      border-radius: var(--radius-pill);
      padding: 5.5px 10px;
      margin-bottom: 30px;
    }

    /* Sliding pill background */
    .tab-slider {
      position: absolute;
        top: 5px;
        left: 8px;
        width: calc(50% - 5px);
        height: calc(100% - 11px);
      background: var(--orange);
      border-radius: var(--radius-pill);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
      will-change: transform;
    }
    .tab-slider.slide-right {
      transform: translateX(100%);
    }

    .tab-toggle .tab-btn {
      flex: 1;
      position: relative;
      z-index: 1;
      border: none;
      background: transparent;
      border-radius: var(--radius-pill);
      padding: 8px 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--orange);
      cursor: pointer;
      transition: color 0.25s ease;
      letter-spacing: 0.861px;
      line-height: 28.693px;
    }
    .tab-toggle .tab-btn.active {
      color: #F7F7F7;
    }

    /* ── Form Labels ── */
    .form-label {
      font-size: 14.348px;
      font-weight: 400;
      color: var(--text-dark);
      margin-bottom: 11px;
      line-height: 28.693px;
      letter-spacing: 0.861px;
    }

    /* ── Inputs ── */
    .input-wrap {
      position: relative;
      margin-bottom: 12px;
    }
    .input-wrap input {
      width: 100%;
      border: 1.5px solid var(--text-dark);
      border-radius: var(--radius-input);
      padding: 13px 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14.348px;
      color: var(--text-dark);
      background: var(--input-bg);
      letter-spacing: 0.861px;
      outline: none;
      transition: border-color 0.2s;
      font-weight: 400;
    }
    .signup-wrap .input-wrap .form-label, .signup-wrap .input-wrap {
      margin-bottom: 7px;
    }

    .input-wrap input::placeholder { color: rgba(0, 0, 0, 0.40); letter-spacing: 0.861px; }
    .input-wrap input:focus { border-color: var(--orange); }
    .input-wrap .eye-icon {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #000;
      display: flex;
      align-items: center;
    }
    .input-wrap .eye-icon svg { width: 20px; height: 20px; }

    /* ── Error State ── */
    .input-field-wrap { position: relative; }

    .input-wrap.error input {
      border-color: #E53935 !important;
      animation: shake 0.38s cubic-bezier(.36,.07,.19,.97) both;
    }
    .input-wrap.error input:focus {
      border-color: #E53935 !important;
      box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
    }

    .otp-inputs input.error {
      border-color: #E53935 !important;
      animation: shake 0.38s cubic-bezier(.36,.07,.19,.97) both;
    }
    .otp-inputs input.error:focus {
      border-color: #E53935 !important;
      box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
    }
    .invalid {
        color: #E53935;
        font-size: 11px;
        font-weight: 600;
    }
    .valid {
        font-size: 11px;
        font-weight: 600;
        color: #008000;
    }

    .error-msg {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      color: #E53935;
      opacity: 0;
      height: 0;
      overflow: hidden;
      margin-top: 0;
      transform: translateY(-4px);
      transition: opacity 0.2s ease, transform 0.2s ease, height 0.2s ease, margin-top 0.2s ease;
      pointer-events: none;
    }
    .error-msg.visible {
      opacity: 1;
      height: 20px;
      margin-top: 6px;
      transform: translateY(0);
    }
    .error-msg svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }

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

    /* ── Remember / Forget ── */
    .remember-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .remember-row label {
      font-size: 14.348px;
      font-weight: 400;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 9px;
      cursor: pointer;
      letter-spacing: 0.861px;
      line-height: 28.693px;
    }
    /* Hide native checkbox */
    .remember-row label input[type="checkbox"] {
      display: none;
    }

    /* Custom box */
    .remember-row label .custom-check {
      width: 16px;
      height: 16px;
      border: 2px solid #000;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
      background: #fff;
    }

    /* Checked state — orange bg, white tick */
    .remember-row label input[type="checkbox"]:checked + .custom-check {
      background: var(--orange);
      border-color: var(--orange);
    }

    .remember-row label input[type="checkbox"]:checked + .custom-check::after {
      content: '';
      display: block;
        width: 9px;
        height: 6px;
        border-left: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-50deg) translateY(-1px);
    }

    .forget-link {
      color: #000;
        font-family: Montserrat;
        font-size: 14.348px;
        font-style: normal;
        font-weight: 400;
        line-height: 28.693px;
        letter-spacing: 0.861px;
        text-decoration: none;
    }
    .forget-link:hover { color: var(--orange); }

    /* ── Log In Button ── */
    .btn-login {
      width: 100%;
      background: var(--orange);
      border: none;
      border-radius: var(--radius-pill);
      padding: 16px;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
      color: #FFF;
        font-size: 22px;
        font-weight: 600;
        line-height: 28.693px;
        letter-spacing: 1.32px;
    }
    .btn-login:hover {
      background: var(--orange-hover);
    }
    .btn-login:active { transform: scale(0.98); }

    /* ── Divider ── */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 10px 0 21px;
    }
    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 0.3px;
      background: rgba(0, 0, 0, 0.3);
    }
    .divider span {
      color: #1E1E1E;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28.693px; 
        letter-spacing: 0.96px;
    }

    /* ── Footer Links ── */
    .footer-text {
        font-size: 14.348px;
        font-style: normal;
        font-weight: 400;
        line-height: 28.693px;
        letter-spacing: 0.861px;
        color: #000;
        text-align: center;
    }
    .footer-text a {
      color: var(--orange);
      font-weight: 600;
      text-decoration: none;
    }
    .footer-text a:hover { text-decoration: underline; }

    /* ── Input slide-in animation ── */
    .input-slide {
      overflow: hidden;
    }
    .input-slide-inner {
      display: flex;
      width: 200%;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .input-slide-inner .slide-panel {
      width: 50%;
      flex-shrink: 0;
    }
    .input-slide-inner.show-email {
      transform: translateX(-50%);
    }

    /* ── signup page css ── */

    /* Send OTP button inside phone field */
    .send-otp-btn {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--orange);
      font-family: 'Montserrat', sans-serif;
      font-size: 14.348px;
      font-weight: 600;
      cursor: pointer;
      padding: 0;
      line-height: 28.693px;
        letter-spacing: 0.861px;
      transition: color 0.2s;
    }
    .send-otp-btn:hover { color: var(--orange-hover); }
    .send-otp-btn:disabled { color: #bbb; cursor: not-allowed; }

    /* OTP countdown text */
    .otp-timer {
      font-size: 11px;
      color: var(--text-muted);
      margin-left: 16px;
      margin-top: -16px;
      margin-bottom: 8px;
      min-height: 16px;
    }

    /* Terms row */
    .terms-row {
      display: flex;
      align-items: center;
      margin-bottom: 28px;
      margin-top: 2px;
    }
    .terms-row label {
      font-size: 14.348px;
      font-weight: 400;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 9px;
      cursor: pointer;
      letter-spacing: 0.861px;
      line-height: 28.693px;
    }
    .terms-row label input[type="checkbox"] { display: none; }
    .terms-row label .custom-check {
      width: 16px;
      height: 16px;
      border: 2px solid #000;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
      background: #fff;
    }
    .terms-row label input[type="checkbox"]:checked + .custom-check {
      background: var(--orange);
      border-color: var(--orange);
    }
    .terms-row label input[type="checkbox"]:checked + .custom-check::after {
      content: '';
      display: block;
      width: 9px;
      height: 6px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-50deg) translateY(-1px);
    }
    .terms-row a { color: var(--orange); font-weight: 600; text-decoration: none; }
    .terms-row a:hover { text-decoration: underline; }

    .terms-error {
      font-size: 11px;
      font-weight: 600;
      color: #E53935;
      display: flex;
      align-items: center;
      gap: 5px;
      opacity: 0;
      height: 0;
      overflow: hidden;
      margin-top: 0;
      margin-bottom: 0;
      transition: opacity 0.2s, height 0.2s, margin 0.2s;
    }
    .terms-error.visible {
      opacity: 1;
      height: 20px;
      margin-top: -30px;
      margin-bottom: 12px;
    }
    .terms-error svg { width: 13px; height: 13px; flex-shrink: 0; }

    /* input-wrap margin override for signup (tighter with error msgs) */
    .signup-wrap { margin-bottom: 0; }
    .field-block { margin-bottom: 4px; }

    /* ── signup page css end ── */

    /* ── OTP Modal ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
      padding: 16px;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .otp-modal {
      background: #fff;
      border-radius: 24px;
      padding: 32px 28px 36px;
      width: 100%;
      max-width: 450px;
      text-align: center;
      transform: translateY(24px) scale(0.97);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
      opacity: 0;
      position: relative;
    }
    .modal-overlay.open .otp-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    .modal-back {
      position: absolute;
      top: 32px;
      left: 28px;
      border-radius: 50%;
      border: none;
      background: none;
      cursor: pointer;
      padding: 0;
    }
    .modal-back:hover { opacity: 0.8; }
    .modal-back svg { width: 35px; height: 35px; }
    .modal-title {
      color: var(--text-dark);
      margin-bottom: 40px;
      font-size: 28px;
      font-weight: 600;
      line-height: normal;
      letter-spacing: 1.68px;
    }
    .otp-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(145deg, #FFB347, #FF8516);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 40px;
    }
    .otp-icon-wrap svg { width: 36px; height: 36px; color: #fff; }
    .otp-modal h2 {
      color: #000;
      margin-bottom: 10px;
      font-size: 28px;
      font-weight: 700;
      line-height: normal;
      letter-spacing: 1.68px;
    }
    .otp-modal p {
      margin-bottom: 50px;
      color: #000;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.96px;
    }
    .otp-inputs {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin-bottom: 50px;
    }
    .otp-digit {
      width: 65px;
      height: 65px;
      border: 1px solid #000;
      border-radius: 50%;
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 30px;
      font-weight: 400;
      line-height: 28.693px;
      color: var(--text-dark);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      background: #fff;
      caret-color: var(--orange);
      letter-spacing: 1.8px;
    }
    .otp-digit:focus {
      border-color: var(--orange);
    }
    .otp-digit.filled {
      border-color: var(--orange);
      background: var(--orange);
      color: #fff;
    }
    .btn-confirm {
      width: 100%;
      background: var(--orange);
      border: none;
      border-radius: var(--radius-pill);
      padding: 14px;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
      margin-bottom: 18px;
      font-size: 22px;
      font-weight: 600;
      line-height: 28.693px;
      letter-spacing: 1.32px;
    }
    .btn-confirm:hover { background: var(--orange-hover); }
    .btn-confirm:active { transform: scale(0.98); }
    .resend-text {
      color: #000;
      font-size: 14.348px;
      font-style: normal;
      font-weight: 400;
      line-height: 28.693px;
      letter-spacing: 0.861px;
    }
    .resend-text a, .resend-link {
      color: var(--orange);
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 14.348px;
      padding: 0;
      letter-spacing: 0.861px;
    }
    .resend-text a:hover, .resend-link:hover { text-decoration: underline; }
    .resend-timer {
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 6px;
      min-height: 18px;
    }

    /* ── Responsive tweaks ── */
    @media (max-width: 440px) {
      .login-card { padding: 32px 22px 28px; }
      .login-card h1 { font-size: 22px; }
      .otp-digit {
        width: 50px;
        height: 50px;
      }
      .otp-inputs {
        gap: 22px;
      }
    }

    /* ════════════════════════════════
       FORGOT PASSWORD PAGE CSS
    ════════════════════════════════ */

    /* ── Page top bar ── */
    .page-topbar {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.5px;
      margin-bottom: 20px;
    }

    /* ── Back row with title ── */
    .back-title-row {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 32px;
    }
    .back-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color 0.2s;
      text-decoration: none;
    }
    .back-btn:hover { border-color: var(--orange); }
    .back-btn svg { color: #000; }
    .page-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: 1.2px;
      line-height: normal;
    }

    /* ── Lock icon circle ── */
    .lock-icon-wrap {
      /* width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(145deg, #FFB347, #FF8516); */
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
    }
    .lock-icon-wrap svg { width: 40px; height: 40px; color: #fff; }

    /* ── Forgot page heading ── */
    .fp-heading {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 8px;
      letter-spacing: 1.68px;
    }
    .fp-subtitle {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 32px;
      letter-spacing: 0.7px;
      line-height: 1.5;
    }

    /* ── Password rules box ── */
    .pwd-rules {
      background: #F0EFEF;
      border-radius: 10px;
      margin-top: 15px;
      padding: 13px 25px;
      margin-bottom: 28px;
    }
    .pwd-rules-title {
      font-size: 14.348px;
      font-weight: 400;
      line-height: normal;
      letter-spacing: 0.861px;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .pwd-rule {
      display: flex;
      align-items: center;
      gap: 9px;
      line-height: 2;
      transition: color 0.2s;
      color: #000;
      font-size: 14.348px;
      font-weight: 400;
      line-height: normal;
      letter-spacing: 0.861px;
    }
    .pwd-rule .rule-check {
      width: 10px;
      height: 10px;
      border: 0.9px solid #1E1E1E;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }
    .pwd-rule.passed { color: var(--orange); }
    .pwd-rule.passed .rule-check {
      background: var(--orange);
      border-color: var(--orange);
    }
    .pwd-rule.passed .rule-check::after {
      content: '';
      display: block;
      width: 7px;
      height: 4px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-50deg) translateY(-1px);
    }

    /* ════════════════════════════════
       THANK YOU PAGE CSS
    ════════════════════════════════ */

    html, body {
      height: 100%;
    }

    .ty-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: 'Montserrat', sans-serif;
    }

    /* ── Top white header ── */
    .ty-header {
      background: #ffffff;
      padding: 28px 24px 32px;
      text-align: center;
      flex-shrink: 0;
    }
    .ty-header img {
      height: 75px;
      width: auto;
    }

    /* ── Dark body ── */
    .ty-body {
      background: #1a1a1a;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 70px 20px 36px;
      text-align: center;
      border-radius: 22px 22px 0 0;
    }

    /* ── Heading ── */
    .ty-title {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 30px;
      text-align: center;
      font-size: 25px;
      line-height: normal;
      letter-spacing: 1.68px;
    }

    /* ── Subtitles ── */
    .ty-sub1, .ty-sub2 {
      font-weight: 400;
      margin-bottom: 30px;
      color: #FFF;
      text-align: center;
      font-family: Montserrat;
      font-size: 17px;
      line-height: normal;
      letter-spacing: 1.2px;
    }

    /* ── Illustration row ── */
    .ty-illustration {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 0px;
      margin: 28px 0 -5px;
      width: 100%;
      max-width: 320px;
      z-index: 1;
    }
    .left-girl {
      margin-bottom: -43px;
    }

    /* ── Dashboard button ── */
    .btn-dashboard {
      display: block;
      width: 100%;
      max-width: 300px;
      background: var(--orange);
      border: none;
      border-radius: var(--radius-pill);
      padding: 16px 24px;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 28.693px;
      letter-spacing: 1.32px;
      color: #ffffff;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: background 0.2s, transform 0.1s;
      margin-bottom: 16px;
    }
    .btn-dashboard:hover {
      background: var(--orange-hover);
      color: #ffffff;
    }
    .btn-dashboard:focus-visible { outline: none; }
    .btn-dashboard:active { transform: scale(0.98); }

    /* ── Timer ── */
    .ty-timer {
      color: #FFF;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      letter-spacing: 1.2px;
    }

    @media (max-width: 400px) {
      .ty-illustration { max-width: 280px; }
    }

    /* ════════════════════════════════
       WELCOME / SPLASH SCREEN CSS
    ════════════════════════════════ */

    .welcome-page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 440px;
      margin: 0 auto;
      overflow: hidden;
    }

    /* ── Dark top half ── */
    .welcome-top {
      background: #000000;
      min-height: 250px;
      border-radius: 0 0 28px 28px;
      position: relative;
      overflow: hidden;
    }

    /* ── White bottom half ── */
    .welcome-bottom {
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 110px 35px 110px;
      flex-shrink: 0;
    }

    /* ── Logo area ── */
    .welcome-logo {
      text-align: center;
      margin-bottom: 23px;
    }
    .welcome-logo img {
      height: 93px;
      width: auto;
    }

    /* ── Heading ── */
    .welcome-heading {
      font-size: 28px;
      font-weight: 700;
      color: #000;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: 1.68px;
      line-height: normal;
    }

    /* ── Subtitle ── */
    .welcome-subtitle {
      font-size: 16px;
      font-weight: 400;
      color: #000;
      text-align: center;
      margin-bottom: 29px;
      letter-spacing: 0.96px;
      line-height: 1.6;
    }

    /* ── Buttons row ── */
    .welcome-btns {
      display: flex;
      gap: 10px;
      width: 100%;
      background: #F7F7F7;
      border-radius: var(--radius-pill);
      padding: 5.5px 10px;
      margin-bottom: 0;
    }

    /* Log In — inactive pill (no fill) */
    .btn-welcome-login {
      flex: 1;
      border: none;
      background: transparent;
      border-radius: var(--radius-pill);
      padding: 10px 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--orange);
      letter-spacing: 0.861px;
      line-height: 28.693px;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
    }
    .btn-welcome-login:hover { color: var(--orange-hover); }

    /* Sign Up — active filled orange pill */
    .btn-welcome-signup {
      flex: 1;
      background: var(--orange);
      border: none;
      border-radius: var(--radius-pill);
      padding: 10px 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #F7F7F7;
      letter-spacing: 0.861px;
      line-height: 28.693px;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.1s;
    }
    .btn-welcome-signup:hover { background: var(--orange-hover); color: #F7F7F7; }
    .btn-welcome-signup:active { transform: scale(0.98); }

    /* ── Ticker bar ── */
    .ticker-bar {
      background: var(--orange);
      width: 100%;
      padding: 15px 0;
      margin-top: auto;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .ticker-bar marquee {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 500;
      color: #fff;
      letter-spacing: 1.32px;
    }

    @media (max-width: 400px) {
      .welcome-heading { font-size: 24px; }
      .welcome-bottom { padding: 50px 24px 110px; }
    }
    
.disable-click {
    pointer-events: none;
    cursor: not-allowed;
    text-decoration: none;
    opacity: 0.6;
}