/* Styles pour le formulaire d'inscription multi-étapes */

/* Indicateur de progression */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.progress-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.progress-circle.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.progress-circle.completed {
    background: #198754;
    border-color: #198754;
    color: white;
}

.progress-step-label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.progress-step-item.active .progress-step-label {
    color: #0d6efd;
    font-weight: 600;
}

.progress-step-item.completed .progress-step-label {
    color: #198754;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #dee2e6;
    z-index: 1;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: #198754;
}

.progress-step-item:last-child .progress-line {
    display: none;
}

/* Animation des étapes */
.registration-step {
    animation-duration: 0.4s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .progress-indicator {
        padding: 0;
    }
    
    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .progress-step-label {
        font-size: 0.75rem;
    }
    
    .progress-line {
        top: 20px;
    }
}

/* Boutons de navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.step-navigation .btn {
    min-width: 120px;
}
