/* Multi-step progress bar */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
    transform: translateY(-50%);
}

.step-indicator {
    position: relative;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step-indicator.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 80, 210, 0.1);
}

.step-indicator.completed {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Steps visibility */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

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

/* Buttons navigation */
.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    align-items: center;
}