/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

/*--------------------------------------------------------------
# Progress Indicator
--------------------------------------------------------------*/
.progress-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-indicator .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.progress-indicator .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--phoenix-gray-200);
    color: var(--phoenix-gray-600);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    z-index: 1;
}

.progress-indicator .step-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--phoenix-gray-600);
    transition: color 0.3s;
}

.progress-indicator .step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--phoenix-gray-200);
    margin: 0 -20px;
    position: relative;
    top: -20px;
}

.progress-indicator .step.active .step-icon {
    background-color: var(--phoenix-primary);
    color: var(--phoenix-white);
}

.progress-indicator .step.active .step-label {
    color: var(--phoenix-primary);
    font-weight: 600;
}

.progress-indicator .step.complete .step-icon {
    background-color: var(--phoenix-success);
    color: var(--phoenix-white);
}

.progress-indicator .step.complete .step-label {
    color: var(--phoenix-gray-800);
}
