.step { display: none; }
        .step.active { display: block; }
.multistep-form-text {
color: #3A6FB6;
    font-family: 'Inter';
}
.font-modal{
font-family: 'Inter';
}
  /* Ensure the step-bar stays aligned on all screen sizes */
/* Step Indicators Layout */
/* Ensure the step bar is aligned correctly on all devices */
#stepIndicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px; /* Ensure the items are spaced evenly */
    width: 100%;
    flex-wrap: nowrap; /* Prevent wrapping on smaller screens */
}

/* Prevent text from wrapping in the step indicator labels */
.tab-label {
    white-space: nowrap;
    /* Adjust font size to avoid overflow on mobile */
}

/* Step Bar Style */
.step-bar {
   
    background-color: #ccc;
    border-radius: 4px;
    width: 100%;
}

/* Active Step Bar Style */
.step-bar.bg-blue-600 {
    background-color: #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    #stepIndicators {
        gap: 10px;  /* Reduce the gap on smaller screens */
	padding-top:10px;
    }

    
}
