        .create-wallet-form {
            max-width: 500px;
            margin: 40px auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 40px;
        }
        
        .create-wallet-form * {
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .create-wallet-form .form-header {
            text-align: center;
            margin-bottom: 35px;
        }
        
        .create-wallet-form .form-header h1 {
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .create-wallet-form .form-header p {
            color: #7f8c8d;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .create-wallet-form .crypto-section {
            margin-bottom: 30px;
        }
        
        .create-wallet-form .section-title {
            font-size: 18px;
            color: #3498db;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f8ff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .create-wallet-form .crypto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .create-wallet-form .crypto-option {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            padding: 25px 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .create-wallet-form .crypto-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .create-wallet-form .crypto-option.selected {
            border-color: #3498db;
            background-color: #f0f9ff;
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
        }
        
        .create-wallet-form .crypto-icon {
            width: 100%;
            text-align: center;
            font-size: 40px;
            margin-bottom: 15px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .create-wallet-form .crypto-name {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .create-wallet-form .crypto-symbol {
            color: #7f8c8d;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .create-wallet-form .network-section {
            margin-top: 40px;
        }
        
        .create-wallet-form .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }
        
        .create-wallet-form .network-option {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .create-wallet-form .network-option:hover {
            transform: translateY(-3px);
        }
        
        .create-wallet-form .network-option.selected {
            border-color: #2ecc71;
            background-color: #f0fff4;
            box-shadow: 0 5px 15px rgba(46, 204, 113, 0.15);
        }
        
        .create-wallet-form .network-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 22px;
        }
        
        .create-wallet-form .network-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .create-wallet-form .network-fee {
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            background: #edf2f7;
            color: #4a5568;
        }
        
        /* Couleurs spécifiques pour chaque réseau */
        .create-wallet-form .network-option[data-network="erc20"] .network-icon {
            background: #eef2ff;
            color: #627eea;
        }
        
        .create-wallet-form .network-option[data-network="bep20"] .network-icon {
            background: #fef7e0;
            color: #f0b90b;
        }
        
        .create-wallet-form .network-option[data-network="trc20"] .network-icon {
            background: #ffeaea;
            color: #ff6b6b;
        }
        
        .create-wallet-form .network-option[data-network="polygon"] .network-icon {
            background: #f1e5ff;
            color: #8247e5;
        }
        
        .create-wallet-form .network-option[data-network="arbitrum"] .network-icon {
            background: #e0f7fa;
            color: #28b5b5;
        }
        
        .create-wallet-form .network-option[data-network="solana"] .network-icon {
            background: #fff0f7;
            color: #00ffa3;
        }
        
        .create-wallet-form .network-option[data-network="optimism"] .network-icon {
            background: #fff0f0;
            color: #ff0420;
        }
        
        .create-wallet-form .network-option[data-network="avalanche"] .network-icon {
            background: #fff0e0;
            color: #e84142;
        }
        
        .create-wallet-form .selection-summary {
            background: #f0f9ff;
            border-radius: 12px;
            padding: 25px;
            margin-top: 40px;
            border: 2px solid #3498db;
            display: none;
        }
        
        .create-wallet-form .selection-summary.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .create-wallet-form .summary-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .create-wallet-form .summary-content {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .create-wallet-form .summary-icon {
            font-size: 40px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e8f4fc;
        }
        
        .create-wallet-form .summary-details {
            flex: 1;
        }
        
        .create-wallet-form .summary-crypto {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .create-wallet-form .summary-network {
            font-size: 18px;
            font-weight: 600;
            color: #3498db;
            margin-bottom: 10px;
        }
        
        .create-wallet-form .warning-box {
            background: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin-top: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .create-wallet-form .warning-box p {
            color: #856404;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .create-wallet-form .form-footer {
            margin-top: 40px;
            text-align: center;
        }
        
        .create-wallet-form .btn-create {
            padding: 16px 50px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 220px;
        }
        
        .create-wallet-form .btn-create:hover {
            background: linear-gradient(to right, #2980b9, #1a252f);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
        }
        
        .create-wallet-form .btn-create:disabled {
            background: #cbd5e0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .create-wallet-form {
                padding: 25px;
                margin: 20px;
            }
            
            .create-wallet-form .crypto-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .create-wallet-form .network-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .create-wallet-form .btn-create {
                width: 100%;
                padding: 16px 20px;
            }
            
            .create-wallet-form .summary-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .create-wallet-form .summary-icon {
                width: 70px;
                height: 70px;
            }
        }


    .create-wallet-option-active{
        border-color: var(--primary);
        background-color: var(--primary-light);
        color: aliceblue;
    }
    .create-wallet-options {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    .create-wallet-options span{
        color:#3d4480;
    }
    .create-wallet-options .create-wallet-option {
        background-color: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 25px;
        border: 2px solid #6370e6;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .create-wallet-options .create-wallet-option:hover {
        border-color: var(--primary);
        background-color: var(--primary-light);
        color: aliceblue;
    }
    .create-wallet-options:hover  span {
        color:#f9f9fc;
    }
    .create-wallet-options .create-wallet-option i {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .create-wallet-content {
        max-width: 600px;
        margin: auto;
        background-color: var(--background);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

.create-wallet-by-key-form {
    max-width: 550px;
    margin: 30px auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.05);
    padding: 35px 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 224, 224, 0.5);
    animation: createWalletSlideIn 0.5s ease-out;
}

.create-wallet-by-key-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #9b59b6, #3498db);
}

.create-wallet-by-key-form .form-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.create-wallet-by-key-form .form-header h3 {
    color: #2c3e50;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.create-wallet-by-key-form .form-header h3 i {
    color: #3498db;
    font-size: 28px;
    background: rgba(52, 152, 219, 0.1);
    padding: 12px;
    border-radius: 18px;
}

.create-wallet-by-key-form .form-header p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.create-wallet-by-key-form .import-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #edf2f7;
}

.create-wallet-by-key-form .import-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.create-wallet-by-key-form .import-option label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-wallet-by-key-form .import-option label:first-of-type {
    margin-top: 0;
}

.create-wallet-by-key-form .import-option label i {
    color: #3498db;
    font-size: 16px;
    width: 20px;
}

.create-wallet-by-key-form .import-option input 
.create-wallet-by-key-form .import-option select 
{
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #1a2634;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Monaco', 'Courier New', monospace;
}

.create-wallet-by-key-form .import-option input:hover {
    border-color: #cbd5e0;
}

.create-wallet-by-key-form .import-option input:focus 
.create-wallet-by-key-form .import-option select:focus 
{
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.create-wallet-by-key-form .import-option input::placeholder 
{
    color: #a0aec0;
    font-size: 14px;
}

.create-wallet-by-key-form .import-option select::placeholder 
{
    color: #a0aec0;
    font-size: 14px;
}

.create-wallet-by-key-form .btn-import {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.25);
}

.create-wallet-by-key-form .btn-import::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.create-wallet-by-key-form .btn-import:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(52, 152, 219, 0.35);
}

.create-wallet-by-key-form .btn-import:hover::before {
    left: 100%;
}

.create-wallet-by-key-form .btn-import i {
    font-size: 18px;
}

@keyframes createWalletSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .create-wallet-by-key-form {
        margin: 20px;
        padding: 25px 20px;
    }
    
    .create-wallet-by-key-form .form-header h3 {
        font-size: 22px;
    }
    
    .create-wallet-by-key-form .form-header h3 i {
        font-size: 24px;
        padding: 10px;
    }
    
    .create-wallet-by-key-form .import-section {
        padding: 20px;
    }
    
    .create-wallet-by-key-form .import-option input {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .create-wallet-by-key-form .btn-import {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .create-wallet-by-key-form {
        padding: 20px 15px;
    }
    
    .create-wallet-by-key-form .form-header h3 {
        font-size: 20px;
        flex-direction: column;
    }
    
    .create-wallet-by-key-form .form-header p {
        font-size: 14px;
    }
    
    .create-wallet-by-key-form .import-option input {
        padding: 12px 16px;
    }
}


