
  :root {
  --bg: #071226;
  --muted: #9aa4b2;
  --accent: #2b9aff;
  /* --card: rgba(255,255,255,0.02); */
   --card: rgba(255,255,255,0.12);
  --card-border: rgba(255,255,255,0.06);
}
body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}
.main {
   display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 28px; min-height: 100vh;
  
 }

 

 .text-center-top-cash{
  text-align: center;
 }


 .text-center-cash{
  text-align: center;
  gap: 70px;
 }




  .form-box {
  max-width: 700px;
  width: 100%;
  background: var(--card);
  backdrop-filter: blur(12px); /* frosted glass */
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* ADDED: make required labels show a red asterisk */
.required::after{
  content:" *";
  color:#ff4d4f;
  font-weight:700;
}

   

 .steps {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Inter, sans-serif;
} 

  

.step-num {
  background:gray;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.step-text strong {
  font-size: 12px;
  color: #fff;
}

.step-text small {
  font-size: 11px;
  color: var(--muted, #9aa4b2);
}



.step.active .step-num {
        /* background: blue; */
         background: var(--accent, #2b9aff);
         animation: blinkStep 1s infinite ease-in-out; 
        opacity: 1;
    }

    

@keyframes blinkStep {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.4; }
} 

  



/* BDGED TEXT  */

  .trader-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-left: 20px;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 10px;
    width: 170px;
    font-family: Inter, sans-serif;
  }

  .trader-badge i {
    display: flex;
    margin-right: 30px ;
    font-size: 20px;
    gap: 5px;
    color: var(--accent, #2b9aff);
    margin-bottom: 6px;
  }

  .trader-count {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .trader-text {
    font-size: 12px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--muted, #9aa4b2);
  }





/* Tighten column spacing only horizontally */
.tight-cols {
  margin-left: -5px;
  margin-right: -5px;
}
.form-col1 {
  padding-left: 60px;
  margin-bottom: 15px;
  
}

.form-col2{
    padding-right: 30px;
  margin-bottom: 15px; 
}


.form-col3 {
  padding-left: 60px;
  margin-bottom: 15px;
}

.form-col4 {
  padding-right: 30px;
  margin-bottom: 15px; 
}


/* Input with icon */
.input-icon {
  position: relative;
}
.input-icon .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #999; /* icon color */
  font-size: 18px; /* icon size */
}

/* Input field styling */
.inputtext {
  padding-left: 40px; /* space for icon */
  height: 40px;
  color: white;
  padding-inline: 40px;
  background-color: #071226;
  border: 1px solid #444;
  border-radius: 80px;
  cursor: pointer;
}


.icon:hover{
    color: blue;
    
    
}




.text-sm-end {
    padding-right: 60px;

}


.step1-3{
    padding-left: 80px;
}



.input-dark::placeholder { color: rgba(255,255,255,0.35); }
.btn-continue {

  background: linear-gradient(180deg,var(--accent),#0b6fe8);
  border: 0; padding: 9px 18px;
  border-radius: 10px; font-weight: 600; color: #fff;

}
.meta1{
  display: flex;
   gap: 70px;
    text-align: center;
    justify-content: center;

}






/* Continue button */
    .btn {
        padding: 10px 25px;
        background: dodgerblue;
        color: white;
        font-weight: bold;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        animation: moveBtn 2s infinite ease-in-out;
    }

    @keyframes moveBtn {
        0% { transform: translateX(0); }
        50% { transform: translateX(18px); }
        100% { transform: translateX(0); }
    }

    .btn:active {
        transform: translateY(3px);
        animation: none;
    }


.meta 
{ color: var(--muted);
   font-size: 13px;
    text-align: center;
   margin-top: 14px; }
.footer-small { font-size: 13px; color: var(--muted); text-align: center; padding: 12px; }

.meta1{
  display: flex;
   gap: 70px;
    text-align: center;
    justify-content: center;

}


 




      

  
        













      
    