/* Progress bar */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background: #e9ecef;
    z-index: -1;
}

.progress-step {
    width: 35px;
    height: 35px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
}

.progress-step.active {
    background: #4b8ef1;
    color: #fff;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}