.elementor-1178 .elementor-element.elementor-element-f7e90a0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-1178 .elementor-element.elementor-element-6937658{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-0146789 */<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
   
    
    .container {
        width: 100%;
        max-width: 800px;
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        position: relative;
        border: 1px solid #e9ecef;
    }
    
    .header {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 50%, #2A5A8F 100%);
        color: white;
        padding: 25px;
        text-align: center;
    }
    
    .header h1 {
        font-size: 28px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .header p {
        font-size: 16px;
        opacity: 0.9;
        font-weight: 400;
    }
    
    .content {
        padding: 30px;
    }
    
    .step {
        display: none;
        animation: fadeIn 0.5s ease;
    }
    
    .step.active {
        display: block;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    input[type="text"] {
        width: 100%;
        padding: 15px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s;
        background-color: #f8f9fa;
    }
    
    input[type="text"]:focus {
        border-color: #3375BB;
        outline: none;
        box-shadow: 0 0 0 3px rgba(51, 117, 187, 0.1);
        background-color: #ffffff;
    }
    
    .btn {
        display: block;
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(51, 117, 187, 0.3);
        background: linear-gradient(135deg, #3B82D0 0%, #3375BB 100%);
    }
    
    .btn:active {
        transform: translateY(0);
    }
    
    .btn:disabled {
        background: #bdc3c7 !important;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    .btn:disabled:hover {
        background: #bdc3c7 !important;
        transform: none;
        box-shadow: none;
    }
    
    .camera-container {
        position: relative;
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 25px;
        border: 2px solid #e9ecef;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .camera-feed {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: none;
    }
    
    .face-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 240px;
        border: 3px solid rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        box-shadow: 0 0 0 9999px rgba(44, 62, 80, 0.7);
        display: none;
    }
    
    .instructions {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        border-left: 4px solid #3375BB;
    }
    
    .instructions h3 {
        margin-bottom: 12px;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .direction-indicator {
        display: flex;
        justify-content: space-between;
        margin: 20px 0;
        gap: 10px;
    }
    
    .direction {
        text-align: center;
        padding: 15px 10px;
        border-radius: 12px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        width: 23%;
        transition: all 0.3s;
        border: 1px solid #e9ecef;
    }
    
    .direction.active {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%);
        color: white;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(51, 117, 187, 0.3);
    }
    
    .direction i {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .progress-container {
        margin: 30px 0;
    }
    
    .progress-bar {
        height: 12px;
        background-color: #e9ecef;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .progress {
        height: 100%;
        background: linear-gradient(90deg, #3375BB 0%, #3B82D0 50%, #3375BB 100%);
        width: 0%;
        transition: width 0.5s ease;
        border-radius: 6px;
    }
    
    .success-container {
        text-align: center;
        padding: 40px 30px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 16px;
        margin: 10px 0;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: pulse 1.5s infinite;
        box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    }
    
    .success-icon i {
        color: white;
        font-size: 50px;
    }
    
    .success-container h2 {
        color: #27ae60;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .error-message {
        color: #e74c3c;
        text-align: center;
        margin-top: 15px;
        padding: 12px;
        background: linear-gradient(135deg, #ffeaea 0%, #ffd1d1 100%);
        border-radius: 8px;
        display: none;
        border-left: 4px solid #e74c3c;
    }
    
    .camera-placeholder {
        text-align: center;
        color: #7f8c8d;
    }
    
    .camera-placeholder i {
        font-size: 60px;
        margin-bottom: 15px;
        color: #95a5a6;
    }
    
    .face-status {
        text-align: center;
        margin-top: 15px;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .countdown {
        font-size: 48px;
        text-align: center;
        margin: 20px 0;
        color: #3375BB;
        font-weight: 700;
    }
    
    .permission-request {
        text-align: center;
        padding: 30px 20px;
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-radius: 12px;
        margin-bottom: 20px;
        border: 1px solid #90caf9;
    }
    
    .detection-status {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px 0;
    }
    
    .detection-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        margin-right: 12px;
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    }
    
    .detection-dot.ready {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes pulse {
        0% { transform: scale(1); box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3); }
        50% { transform: scale(1.05); box-shadow: 0 12px 30px rgba(46, 204, 113, 0.4); }
        100% { transform: scale(1); box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3); }
    }
    
    .initial-countdown {
        font-size: 24px;
        text-align: center;
        margin: 20px 0;
        color: #3375BB;
        font-weight: 600;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #e9ecef;
    }
    
    /* Animation pour le bouton */
    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: 0.5s;
    }
    
    .btn:hover::after {
        left: 100%;
    }
    
    /* Styles spécifiques pour chaque bouton */
    #verify-id {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%) !important;
    }
    
    #verify-id:hover {
        background: linear-gradient(135deg, #3B82D0 0%, #3375BB 100%) !important;
    }
    
    #start-verification {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%) !important;
    }
    
    #start-verification:hover {
        background: linear-gradient(135deg, #3B82D0 0%, #3375BB 100%) !important;
    }
    
    #enable-camera {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%) !important;
    }
    
    #enable-camera:hover {
        background: linear-gradient(135deg, #3B82D0 0%, #3375BB 100%) !important;
    }
    
    #continue-btn {
        background: linear-gradient(135deg, #3375BB 0%, #2F67A5 100%) !important;
    }
    
    #continue-btn:hover {
        background: linear-gradient(135deg, #3B82D0 0%, #3375BB 100%) !important;
    }
    
    #continue-btn:disabled {
        background: #bdc3c7 !important;
    }
    
    #continue-btn:disabled:hover {
        background: #bdc3c7 !important;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .container {
            margin: 10px;
            border-radius: 16px;
        }
        
        .content {
            padding: 20px;
        }
        
        .header {
            padding: 20px;
        }
        
        .direction-indicator {
            flex-wrap: wrap;
        }
        
        .direction {
            width: 48%;
            margin-bottom: 10px;
        }
        
        .camera-container {
            height: 250px;
        }
    }
</style>/* End custom CSS */