
        :root {
            --primary-color: #200A58;
        }
        body {
            background-color: #f8f9fa;
            font-family: 'Arial', sans-serif;
        }

        .main-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            background-image: url(https://s3-alpha-sig.figma.com/img/a04e/d98d/69441cb0619f5f82fa5e7f5856dd6e54?Expires=1737936000&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4&Signature=Ub4tj-1VXVFEFKUIwhO6GThDPGYG37sv31xrSj-~2WoFXPpqWSteYg79vxO46RLdZgUPs5P2XF3vpM-Q50a6iPdbp2PJuzHHt~nvOn~ezWP4P1zixldbiORlDcbPisq8V~ks3e4QAxipnwgC79Yzg~lkvGmz0ifKWwnI8mtsWJ-ReJ9VmuU~08~8esNXdVFoB8YvSrlCPJxGvNIoSeTbZnppA8DPFJg7zDRTGUWxE7OTYn0iEuwPX0HwcClN3MnuUyaRYOLqu57AJ4omBpPyTQj-70qh8SBUsWuG-CZRS7VvQhI136i5x4VEYNZqd6HHw~WJL92ltBSlfFEV5LsZaw__);
        }

        .form-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem;
            background-color: #ffffff;
            box-shadow: 10px 4px 15px rgba(0, 0, 0, 0.5);
            /* border-top-right-radius: 50px; */
        }

        .form-section h2 {
            color: #0d6efd;
            font-weight: 700;
        }

        .form-section form input,
        .form-section form select {
            border-radius: 6px;
            padding: 0.75rem;
        }

        .form-section form .register-btn {
            background-color: #0d6efd;
            border: none;
            padding: 0.75rem;
            border-radius: 6px;
            width: 100%;
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
        }

        .form-section p a {
            text-decoration: none;
            color: #0d6efd;
        }

        .social-buttons button {
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-radius: 8px;
            gap: 10px;
            padding: 0.75rem;
            width: 500px;
            justify-content: center;
        }

        .social-icon {
            width: 24px;
            height: 24px;

        }

        .promo-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            color: #fff;
            text-align: center;
            background-image: url(https://images.unsplash.com/photo-1519408469771-2586093c3f14?q=80&w=1902&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
            background-position: center;
            background-size: cover;
        }

        .promo-section h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .promo-section h2 {
            font-size: 1.5rem;
            margin-top: 1rem;
        }

        .logo {
            position: absolute;
            top: 3%;
            left: 5%;
            color: #0d6efd;
            font-weight: 700;
        }
        .regs {
            color:#200A58 ;
            font-weight: 700;
        
        }
        .regs-p{
            color:#200A58 ;

        }

        /* Legal checkboxes styling */
        .legal-checkboxes {
            margin: 1rem 0;
        }
        .legal-checkboxes .form-check {
            margin-bottom: 0.75rem;
            text-align: left;
        }
        .legal-checkboxes .form-check-label {
            font-size: 0.9rem;
            color: #495057;
            line-height: 1.4;
        }
        .legal-checkboxes .form-check-input:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

        @media (max-width: 768px) {
            .promo-section {
                display: none;
            }

            .form-section {
                width: 100%;
            }
        }
 