.register-container {
            min-height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .register-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }
        
        .register-form-section {
            padding: 3rem;
        }
        
        .register-image-section {
            background: linear-gradient(135deg, #BC0000, #0040E5);
            position: relative;
            overflow: hidden;
        }
        
        .register-image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1551717743-49959800b1f6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
            opacity: 0.3;
        }
        
        .register-decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }
        
        .decorative-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .shape-1 {
            width: 100px;
            height: 100px;
            border-radius: 20px;
            top: 15%;
            left: 10%;
            transform: rotate(45deg);
            animation: float 7s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            bottom: 25%;
            right: 15%;
            animation: float 5s ease-in-out infinite reverse;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            top: 60%;
            left: 15%;
            transform: rotate(-30deg);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
            50% { transform: translateY(-25px) rotate(var(--rotation, 0deg)); }
        }
        
        .shape-1 { --rotation: 45deg; }
        .shape-3 { --rotation: -30deg; }
        
        .form-control:focus {
            border-color: #BC0000;
            box-shadow: 0 0 0 0.2rem rgba(188, 0, 0, 0.25);
        }
        
        .btn-fbkc-register {
            background: linear-gradient(135deg, #BC0000, #0040E5);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(188, 0, 0, 0.3);
        }
        
        .btn-fbkc-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(188, 0, 0, 0.4);
            color: white;
        }
        
        .social-register {
            border-radius: 50px;
            padding: 10px 20px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .social-register:hover {
            border-color: #BC0000;
            background-color: #f8f9fa;
        }
        
        .register-benefits {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            backdrop-filter: blur(10px);
        }
        
        .benefit-item {
            display: flex;
            align-items: center; /* Problème ici */
            margin-bottom: 1rem;
        }
        
        .benefit-item:last-child {
            margin-bottom: 0;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #BC0000, #0040E5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center; /* VS Code soulignait ici */
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .strength-indicator {
            height: 4px;
            border-radius: 2px;
            transition: all 0.3s ease;
            margin-top: 5px;
        }
        
        .strength-weak { background: #dc3545; width: 25%; }
        .strength-fair { background: #ffc107; width: 50%; }
        .strength-good { background: #fd7e14; width: 75%; }
        .strength-strong { background: #198754; width: 100%; }
        
        /* Dark mode styles */
        [data-bs-theme="dark"] .register-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }
        
        [data-bs-theme="dark"] .register-card {
            background: rgba(30, 30, 30, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        [data-bs-theme="dark"] .register-benefits {
            background: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .register-form-section {
                padding: 2rem 1.5rem;
            }
            
            .register-image-section {
                min-height: 250px;
            }
        }

        /* NEW */

        .user-type-selection {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-type-option {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.user-type-option:hover {
    border-color: #BC0000;
}

.user-type-option.selected {
    border-color: #BC0000;
    background: rgba(188, 0, 0, 0.1);
}

.user-type-option input[type="radio"] {
    display: none;
}

.email-check-success {
    color: #198754;
}

.email-check-error {
    color: #dc3545;
}

@media (max-width: 768px) {
    .user-type-selection {
        flex-direction: column;
    }
}

/* ========================================
   MODALE DE SUCCÈS D'INSCRIPTION - Version FBKC Premium
   ======================================== */

.register-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 64, 229, 0.95), rgba(188, 0, 0, 0.95));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.register-success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.register-success-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 25px 80px rgba(0, 64, 229, 0.3),
        0 0 60px rgba(188, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Effet de subrillance en arrière-plan */
.register-success-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(0, 64, 229, 0.1) 50%, 
        rgba(188, 0, 0, 0.1) 70%, 
        transparent 80%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.register-success-overlay.show .register-success-content {
    transform: translateY(0) scale(1);
}

.register-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: registerSuccessPulse 0.8s ease-out;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.6),
        0 0 60px rgba(5, 150, 105, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Effet de pulsation lumineuse autour de l'icône */
.register-success-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation: registerGlowPulse 2s ease-in-out infinite;
}

@keyframes registerGlowPulse {
    0%, 100% { 
        opacity: 0;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.register-success-icon i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@keyframes registerSuccessPulse {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.register-success-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.register-success-message {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

.register-success-email {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #059669;
}

/* Phase de création de l'espace personnel */
.register-creating-phase {
    display: none;
}

.register-creating-phase.show {
    display: block;
}

.register-success-phase.hide {
    display: none;
}

/* Spinner de création premium */
.register-loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(0, 64, 229, 0.2);
    border-top: 6px solid #0040E5;
    border-right: 6px solid #BC0000;
    border-radius: 50%;
    animation: registerPremiumSpin 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    margin: 0 auto 2rem;
    box-shadow: 
        0 0 25px rgba(0, 64, 229, 0.3),
        0 0 50px rgba(188, 0, 0, 0.2);
}

@keyframes registerPremiumSpin {
    0% { 
        transform: rotate(0deg);
        box-shadow: 0 0 25px rgba(0, 64, 229, 0.3);
    }
    50% { 
        transform: rotate(180deg);
        box-shadow: 0 0 35px rgba(188, 0, 0, 0.4);
    }
    100% { 
        transform: rotate(360deg);
        box-shadow: 0 0 25px rgba(0, 64, 229, 0.3);
    }
}

.register-creating-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0040E5, #BC0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.register-creating-message {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.register-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 64, 229, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.register-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0040E5, #BC0000);
    border-radius: 3px;
    width: 0%;
    animation: registerProgressFill 3s ease-in-out forwards;
}

@keyframes registerProgressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Effet de particules pour l'inscription */
.register-success-content::after {
    content: '🎉';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
    animation: registerFloat 3s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes registerFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

/* Animation du bouton pendant la soumission */
.btn-registering {
    pointer-events: none;
    opacity: 0.8;
    background: linear-gradient(135deg, #0040E5, #BC0000) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 64, 229, 0.3);
}

.btn-registering .spinner-border {
    width: 1rem;
    height: 1rem;
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: white;
}

/* Blocage du formulaire pendant l'inscription */
.form-registering {
    opacity: 0.7;
    pointer-events: none;
}

.form-registering .form-control:disabled,
.form-registering .form-select:disabled {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .register-success-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .register-success-title {
        font-size: 1.5rem;
    }
    
    .register-success-icon {
        width: 80px;
        height: 80px;
    }
    
    .register-success-icon i {
        font-size: 2.5rem;
    }
}