
        .main {
            min-height: calc(100vh - 180px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: var(--gris-pale);
        }

        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .card {
            background: var(--blanc);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-hover);
            border: 1px solid var(--gris-border);
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 40px -12px rgba(10, 44, 117, 0.25);
        }

        .card .logo {
            display: block;
            margin: 0 auto 1.5rem;
            max-width: 150px;
            height: auto;
            -webkit-text-fill-color: initial;
            background: none;
            font-size: 1.5rem;
            text-align: center;
            color: var(--bleu);
        }

        .card hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--jaune-orange), transparent);
            margin-bottom: 2rem;
        }

        .card h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            color: var(--bleu);
        }

        .card h2 i {
            color: var(--rouge);
            font-size: 1.8rem;
        }

        .title-c {
            font-weight: 600;
        }

        .radio-group {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--gris-pale);
            border-radius: 50px;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            font-weight: 500;
            color: var(--noir-texte);
        }

        .radio-group input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--rouge);
            cursor: pointer;
        }

        .card input[type="text"],
        .card input[type="email"],
        .card input[type="password"],
        .card input[type="tel"],
        .card input[type="file"],
        .card select {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--gris-border);
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--gris-pale);
            margin-bottom: 1.5rem;
        }

        .card input:focus,
        .card select:focus {
            outline: none;
            border-color: var(--bleu);
            background: var(--blanc);
            box-shadow: 0 0 0 4px rgba(10, 44, 117, 0.1);
        }

        .card input::placeholder {
            color: #888;
            opacity: 0.8;
        }

        .form-row-number {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-row-number select {
            width: 40%;
            margin-bottom: 0;
            background-color: var(--blanc);
            cursor: pointer;
        }

        .form-row-number input[type="tel"] {
            width: 60%;
            margin-bottom: 0;
        }

        .country-select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        #hidePass, #entrepriseFields {
            margin-bottom: 1.5rem;
        }

        #hidePass small, #entrepriseFields small {
            color: var(--jaune-orange) !important;
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        #entrepriseFields {
            background: var(--gris-pale);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--rouge);
        }

        #entrepriseFields a {
            color: var(--bleu);
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        #entrepriseFields a:hover {
            color: var(--rouge);
            border-bottom-color: var(--rouge);
        }

        #entrepriseFields i {
            color: var(--rouge);
        }

        .hidden {
            display: none;
        }

        .visible {
            display: block;
        }

        .card input[type="checkbox"] {
            width: auto;
            margin-right: 0.5rem;
            accent-color: var(--rouge);
            transform: scale(1.1);
        }

        .card input[type="checkbox"] + p {
            display: inline;
        }

        .zeag-submit {
            width: 100%;
            padding: 1rem;
            background: var(--bleu-gradient);
            color: var(--blanc);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin: 1.5rem 0;
            border: 2px solid transparent;
        }

        .zeag-submit:active {
            transform: scale(0.98);
        }

        .footer-text {
            text-align: center;
            font-size: 0.95rem;
            color: var(--noir-texte);
            margin-top: 1rem;
        }

        .footer-text a {
            color: var(--rouge);
            font-weight: 600;
            margin-left: 0.5rem;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        .footer-text a:hover {
            color: var(--bleu);
            border-bottom-color: var(--bleu);
        }

        .card > div:first-child {
            text-align: center;
            padding: 2rem;
        }

        .card > div:first-child p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .card > div:first-child span {
            color: #28a745 !important;
            font-weight: bold;
            background: rgba(40, 167, 69, 0.1);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            display: inline-block;
        }

        hr {
            margin: 2rem 0;
        }