/* ========================================
   BARRE DE PROGRESSION
   ======================================== */
.progress-container {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 40px; */
    margin-top: 50px;
    position: relative;
}

.progress-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: var(--form-secondary-color);
    z-index: 1;
}

.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    background-color: var(--form-primary-color);
    z-index: 2;
    transition: var(--form-transition);
}