.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #111827;
}

.step-progress-container {
    padding: 1.5rem 1rem;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-progress::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-title {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.step-item.completed .step-icon {
    background-color: #111827;
    color: #fff;
}

.step-item.active .step-icon {
    background-color: #111827;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(17, 24, 39, 0.15);
}

@media (max-width: 768px) {
    .step-progress {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-progress::before {
        display: none;
    }
}
