/* Progress Bar Styles - Add to your existing auth.css */
.progress-container {
    margin: 10.3125rem auto 1.875rem;
}

.progress-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.625rem;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3125rem;
}

.progress-step {
    font-weight: 500;
    color: #333;
}

.progress-percentage {
    font-weight: 700;
    color: var(--primary);
}

.progress-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.625rem;
}

.progress {
    height: 0.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.progress-bar {
    background-color: var(--primary);
    transition: width 0.6s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps:before {
    content: '';
    position: absolute;
    top: 0.9375rem;
    left: 0;
    right: 0;
    height: 0.125rem;
    background-color: #e9ecef;
    z-index: -1;
}

.progress-step-indicator {
    width: 1.875rem;
    height: 1.875rem;
    background-color: #fff;
    border: 0.125rem solid #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    position: relative;
}

.progress-step-indicator.completed {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-contrast);
}

.progress-step-indicator.active {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.step-name {
    position: absolute;
    top: 2.1875rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6c757d;
    display: none;
}

/* Show step names on larger screens */
@media (min-width: 992px) {
    .step-name {
        display: block;
    }

    .progress-step-indicator {
        margin-bottom: 1.875rem;
    }
}

/* For mobile screens, simplify the progress display */
@media (max-width: 768px) {
    .progress-steps {
        display: none;
    }

    .progress-container {
        margin: 6.25rem auto 1.25rem;
    }
}