        :root {
            --primary-color: #FF6600;
            --primary-dark: #E65C00;
            --primary-light: #FF8533;
        }

        body {
            font-family: "Poppins";
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .signup-container {
            max-width: 800px;
            width: 100%;
            background: white;
            border-radius: 0px;
            box-shadow: 0 2px 19px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .row {
            margin: 0;
        }
        .right-panel {
            padding: 60px 50px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            color: #333;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #666;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 0px;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
        }

        .input-icon {
            position: absolute;
            right: 15px;
            top: 50px;
            color: #999;
        }

        .password-toggle {
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .password-toggle:hover {
            color: var(--primary-color);
        }

        .btn-signup {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border: none;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 0px;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        }

    
       
        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }

        .login-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .login-link a:hover {
            text-decoration: underline;
        }

        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .form-check-label {
            font-size: 0.9rem;
            color: #666;
        }

        .form-check-label a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .form-check-label a:hover {
            text-decoration: underline;
        }

        @media (max-width: 991px) {
            .left-panel {
                padding: 40px 30px;
            }

            .left-panel h2 {
                font-size: 2rem;
            }

            .right-panel {
                padding: 40px 30px;
            }
        }

        @media (max-width: 767px) {
            .left-panel {
                text-align: center;
                padding: 30px 20px;
            }

            .left-panel h2 {
                font-size: 1.8rem;
            }

            .feature-list li {
                justify-content: center;
            }

            .right-panel {
                padding: 30px 20px;
            }

            .form-header h3 {
                font-size: 1.6rem;
            }

            .social-login {
                flex-direction: column;
            }
        }