/* ========================================
   Stepper
   ======================================== */

.step {
    width: 60px;
    height: 60px;
    background-color: var(--form-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    transition: var(--form-transition);
    border: 2px solid var(--form-secondary-color);
}

.step.active {
    border-color: #e11f12cc;
    background-color: #e11f12cc;
    color: white;
    font-weight: 600;
}

.step.completed {
    border-color: #10b981;
    background-color: #10b981;
    color: white;
    font-weight: 600;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 5px;
}

.step-label {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 14px;
    color: var(--form-light-text);
    text-align: center;
    max-width: 100px;
}

.step.active .step-label {
    color: var(--form-primary-color);
    font-weight: 600;
}

.step.completed .step-icon {
    color: white;
    font-weight: 600;
}

/* ========================================
   ÉTAPES DU FORMULAIRE
   ======================================== */

.app-form .form-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.app-form .form-step.active {
    display: block;
}