
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */

/* Hide all steps */
.form-step {
    display: none;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Show active step */
.form-step.active {
    display: block;
}

/* Progress bar container */
.progress-container {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    margin-bottom: 20px;
    border-radius: 20px;
}

/* Animated progress */
.progress-bar {
    height: 6px;
    width: 20%;
    background: #007bff;
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* Step indicators row */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Each step circle */
.step {
    text-align: center;
    font-size: 13px;
    color: #999;
    flex: 1;
}

/* Active step */
.step.active {
    color: #007bff;
    font-weight: bold;
}

/* Form headings */
.form-step h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

/* Button alignment */
.wizard-buttons {
    margin-top: 25px;
    text-align: right;
}

/* Improve spacing */
.form-group {
    margin-bottom: 15px;
}

