.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active-step {
    display: block;
}

#step-indicator-container {
    position: relative;
    margin: 2rem 0 3rem;
}

.progress-track, .progress-fill {
    position: absolute;
    top: 20px; 
    height: 4px;
    background-color: #e9ecef;
    z-index: 1;
}

.progress-fill {
    background-color: var(--primary);
    width: 0; 
    z-index: 2;
    transition: width 0.4s ease;
}

.step-indicator-wrapper {
    position: relative;
    z-index: 3; 
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%; 
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
}

.step-indicator-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #6c757d;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.step-indicator.active .step-indicator-icon {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.25);
}

.step-indicator.active {
    color: var(--primary);
    font-weight: 600;
}

.step-indicator.completed .step-indicator-icon {
    background: var(--primary);
    color: white;
}

.step-indicator.completed {
    color: var(--primary);
    font-weight: 600;
}