/* ================= Base ================= */
:root {
  --nav-h: 64px;              /* height of your fixed navbar */
  --left-w: 45%;              /* left column width */
  --right-w: 55%;             /* right column width */
  --steps-h: 170px;            /* visual height of the red step bar */
  --gap-below-steps: 100px;   /* requested gap below the step numbers */
}

body {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0; /* remove default body margin that can add a gap */
  background: #f9f9f9;
}

h2 { margin-top: 30px; }

input,
button {
  padding: 10px;
  font-size: 16px;
  margin: 10px 0;
  display: block;
  width: 300px;
}

.section { margin-bottom: 30px; display: none; }
.section.active { display: block; }

/* ================ Modal ================= */
#signModal {
  display: none;
  position: fixed;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: #fff;
  border: 2px solid #333;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0,0,0,.5);
}
#signModal iframe { width: 100%; height: 100%; border: none; }

/* ===== Buttons / Features (unchanged) ===== */
.founders-btn { background:#DE78F5; color:#fff; border:none; width:fit-content; }
.founders-btn:hover { background:#E5ABF2; color:#fff; }
.feature-box, .bold-feature { color:#DE78F5; font-weight:600; }
.feature-list, .card-body ul { list-style:none; padding-left:0; margin-top:1rem; font-size:.95rem; }
.feature-list li, .card-body li { display:flex; align-items:flex-start; margin-bottom:.5rem; line-height:1.5; font-size: 12px;}

/* ===== Step progress (fixed under navbar) ===== */
.step-progress {
  position: fixed;                /* keep visible */
  top: var(--nav-h);              /* flush under navbar */
  left: 0;
  width: var(--left-w);           /* match left column width */
  height: var(--steps-h);         /* explicit height so we can offset content below */
  display: flex;
  justify-content: space-between;
  align-items: center;            /* vertically center circles/text in the bar */
  margin: 0;                      /* no extra gap above */
  padding: 0 20px;                /* NO top padding */
  background: #DE78F5;                /* your red bar */
  z-index: 1000;
}
/* only affects headings with this class */
.sdw-heading-primary {
  color: #000000;          /* pick your color */
  letter-spacing: .5px;    /* optional */
  margin-top: 0;           /* avoids extra white gap */
  font-size: 45px;
}
.sdw-heading-subtext {
  color: #000000;          /* pick your color */
  letter-spacing: .5px;    /* optional */
  margin-top: 0;           /* avoids extra white gap */
  font-size: 20px;
}
.sdw-heading-copyright {
  color: #000000;          /* pick your color */
  letter-spacing: .5px;    /* optional */
  margin-top: 0;           /* avoids extra white gap */
  font-size: 14px;
}

/* Step dots/labels */
.step { display:flex; flex-direction:column; align-items:center; flex:1; position:relative; }
.step:not(:last-child)::after {
  content:""; position:absolute; top:36px; right:-50%; width:100%; height:4px; background:#0A9347; z-index:0;
}
.circle {
  width: 80px; height: 80px; border-radius: 50%; background:#DE78F5; color:#ffffff;
  display:flex; align-items:center; justify-content:center; font-size:45px; font-weight:bold; z-index:1;border: 3px solid #0A9347; /* pick your color */
}
.step.active .circle { background:#0A9347; }

/* Pull step labels closer to the dots (move up) */
.label {
  margin-top: 4px;              /* was 0; tighter to the circle */
  line-height: 1.1;
  font-size: 16px;
  text-align: center;
}

/* ============ Layout: frozen left / scrollable right ============ */
html, body { height: 100%; }
.registration-layout-alpha { min-height: 100vh; width: 100%; }

.registration-layout-alpha .signin-left,
.registration-layout-alpha {
  display: flex; flex-direction: column; min-height: 0;
}

.signin-right-alpha {
  display: flex; flex-direction: column; min-height: 0;
}

/* LEFT: sticky panel starting at navbar bottom; grey bg */
.registration-layout-alpha .signin-left {
  flex: 0 0 var(--left-w);
  max-width: var(--left-w);
  background: #DE78F5;
  border-right: 1px solid rgba(0,0,0,0.06);

  position: sticky;
  top: var(--nav-h);                         /* starts right below navbar */
  height: calc(100vh - var(--nav-h));        /* fills remainder of viewport */
  align-self: flex-start;
  overflow: visible;                          /* needed for sticky/fixed children */
  padding: 0;                                 /* no padding that could add a gap */
  align-items: center;                        /* center inner box horizontally */
}

/* Inner box content starts EXACTLY 100px below the step numbers */
.registration-layout-alpha .signin-left .signin-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  /* steps bar height + requested gap below it */
  padding-top: calc(var(--steps-h) + var(--gap-below-steps));
}

/* RIGHT: scrollable white panel */
.registration-layout-alpha .signin-right-alpha {
  flex: 0 0 var(--right-w);
  max-width: var(--right-w);
  background: #fff;
  padding: 24px;
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}



/* ===== Mobile: stack columns & make bar flow normally ===== */
@media (max-width: 767.98px) {
  .step-progress {
    position: static;
    width: 100%;
    height: auto;
    top: auto; left: auto;
    padding: 8px 16px;
  }

  .registration-layout .signin-left,
  .registration-layout .signin-right-alpha {
    flex: none; height: auto; overflow: visible;
  }

  .registration-layout .signin-left {
    max-width: 100%; border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .registration-layout .signin-left .signin-box {
    max-width: 100%;
    padding-top: 16px;  /* normal spacing on mobile */
  }

  .registration-layout .signin-right-alpha { max-width: 100%; padding: 0px; }
}




/* Layout */
    .container { width: 100%; padding: 0 15px; margin: 0 auto; }
    @media (min-width: 1200px) { .container { max-width: 1140px; } }
    .row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
    .justify-content-center { justify-content: center !important; }
    .col-md-4 { position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px; }
    @media (min-width: 768px) { .col-md-4 { flex: 0 0 33.33333%; max-width: 33.33333%; } }

    /* Utilities */
    .text-center { text-align: center !important; }
    .text-start { text-align: left !important; }
    .text-muted { color: #868ba1 !important; }
    .text-success { color: #23BF08 !important; }
    .d-block { display: block !important; }
    .w-100 { width: 100% !important; }
    .h-100 { height: 100% !important; }
    .font-weight-bold { font-weight: 700 !important; }
    .border-0 { border: 0 !important; }

    /* Spacing */
    .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .mt-3 { margin-top: 1rem !important; }
    .mb-0 { margin-bottom: 0 !important; }
    .mb-2 { margin-bottom: 0.5rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }

    /* Card */
    .card { position: relative; display: flex; flex-direction: column; background-color: #fff; border: 1px solid #ced4da; border-radius: 3px; }
    .card-body { flex: 1 1 auto; padding: 1.25rem; }
    .card-title { color: #212529; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 0.75rem; }

    /* Effects */
    .shadow { box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important; }

    /* Buttons 
    .btn { display: inline-block; font-weight: 400; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.594rem 0.75rem; font-size: 0.875rem; line-height: 1.5; border-radius: 3px; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; }
    .btn:focus { outline: 0; box-shadow: 0 0 0 0.2rem rgba(27,132,231,0.25); }
    .btn.disabled, .btn:disabled { opacity: 0.65; }
    .btn:not(:disabled):not(.disabled) { cursor: pointer; }
    .btn-primary { color: #fff; background-color: #1b84e7; border-color: #1b84e7; }
*/
    /* Feature list 
    .feature-box { color: #DE78F5; font-weight: 600; }
    .list-unstyled { list-style: none; padding-left: 0; }
    .feature-list { margin-top: 1rem; }
    .feature-list li { display: flex; align-items: flex-start; margin-bottom: 0.5rem; line-height: 1.5; }*/