
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0e27;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: deplacementGrille 20s linear infinite;
        }

        @keyframes deplacementGrille {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }

        .formes-arriere-plan {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .forme {
            position: absolute;
        }

        .forme:nth-child(1) {
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #00ffff, transparent);
            left: 15%;
            animation: ligneScan 4s infinite;
            opacity: 0.3;
        }

        .forme:nth-child(2) {
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #00ff88, transparent);
            right: 25%;
            animation: ligneScan 6s infinite;
            animation-delay: 1s;
            opacity: 0.3;
        }

        .forme:nth-child(3) {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff00ff, transparent);
            top: 30%;
            animation: ligneScanHorizontale 5s infinite;
            opacity: 0.2;
        }

        @keyframes ligneScan {
            0%, 100% { transform: translateY(-100%); }
            50% { transform: translateY(100%); }
        }

        @keyframes ligneScanHorizontale {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .pluie-code {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .colonne-code {
            position: absolute;
            top: -100%;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #00ffff;
            opacity: 0.15;
            animation: chute linear infinite;
            white-space: nowrap;
        }

        @keyframes chute {
            to { top: 100%; }
        }

        .conteneur {
            position: relative;
            z-index: 10;
            width: 90%;
            max-width: 480px;
            padding: 20px;
        }

        .carte {
            background: rgba(15, 20, 40, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 45px 40px;
            box-shadow: 
                0 0 80px rgba(0, 255, 255, 0.15),
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.1);
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .carte:hover {
            box-shadow: 
                0 0 100px rgba(0, 255, 255, 0.25),
                0 30px 60px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(0, 255, 255, 0.2);
        }

        .en-tete {
            text-align: center;
            margin-bottom: 35px;
        }

        .logo {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
            border-radius: 16px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #0a0e27;
            font-weight: bold;
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: translateX(-100%);
            animation: brillance 3s infinite;
        }

        @keyframes brillance {
            to { transform: translateX(100%); }
        }

        .logo::after {
            content: '</>';
            font-family: monospace;
        }

        h1 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .sous-titre {
            color: #8b9dc3;
            font-size: 14px;
        }

        .ligne-formulaire {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .ligne-formulaire .groupe-formulaire {
            flex: 1;
        }

        .groupe-formulaire {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #a0b4d5;
            font-weight: 600;
            font-size: 14px;
        }

        input, select {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid rgba(0, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: rgba(20, 30, 50, 0.5);
            color: #ffffff;
        }

        input:focus, select:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            background: rgba(20, 30, 50, 0.8);
        }

        input::placeholder {
            color: #5a6b8c;
        }

        select {
            cursor: pointer;
        }

        select option {
            background: #1a2238;
            color: #ffffff;
        }

        .upload-fichier {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        .upload-fichier input[type="file"] {
            position: absolute;
            left: -9999px;
        }

        .label-fichier {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 13px 16px;
            border: 2px dashed rgba(0, 255, 255, 0.3);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(20, 30, 50, 0.3);
            color: #a0b4d5;
            font-weight: 500;
        }

        .label-fichier:hover {
            border-color: #00ffff;
            background: rgba(20, 30, 50, 0.5);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .label-fichier::before {
            content: '📷 ';
            margin-right: 8px;
            font-size: 18px;
        }

        .nom-fichier {
            margin-top: 8px;
            font-size: 13px;
            color: #8b9dc3;
            text-align: center;
        }

        .btn-soumettre {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #00ffff 0%, #00ff88 100%);
            color: #0a0e27;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-soumettre:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
        }

        .btn-soumettre:active {
            transform: translateY(0);
        }

        .lien-pied {
            text-align: center;
            margin-top: 25px;
            color: #8b9dc3;
            font-size: 14px;
        }

        .lien-pied a {
            color: #00ffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .lien-pied a:hover {
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .force-mot-de-passe {
            height: 4px;
            background: rgba(30, 40, 60, 0.5);
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }

        .barre-force-mot-de-passe {
            height: 100%;
            width: 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .message-erreur {
            color: #ff4757;
            font-size: 12px;
            margin-top: 5px;
            display: none;
            text-shadow: 0 0 5px rgba(255, 71, 87, 0.3);
        }

        @media (max-width: 600px) {
            .carte {
                padding: 30px 25px;
            }

            .ligne-formulaire {
                flex-direction: column;
                gap: 0;
            }

            h1 {
                font-size: 24px;
            }
        }
    