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

        :root {
            /* --primary: #baff6b; */
            /* --secondary: #5D69F2; */
            --success: #095215;
            --dark: #2C3E50;
            --light: #F8F9FA;
            --gray: #95A5A6;
            --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            --radius: 5px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .registration-main {
            font-family: 'Poppins', sans-serif;
            /* background: linear-gradient(135deg, #66ea7a 0%, #0b661c 100%); */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            color: var(--dark);
        }

        .registration-container {
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 700px;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            animation: slideUp 0.8s ease-out;
        }

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

        /* Left Panel - Welcome & Benefits */
        .left-panel {
            flex: 1;
            background: linear-gradient(135deg, var(--dark) 0%, #34495e 100%);
            color: white;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .left-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .brand {
            position: relative;
            z-index: 1;
            margin-bottom: 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary), #025314);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 28px;
            box-shadow: 0 10px 20px rgba(255, 107, 139, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 800;
        }

        .logo-text span {
            color: var(--primary);
        }

        .welcome-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .benefits {
            position: relative;
            z-index: 1;
            margin-top: 40px;
        }

        .benefit {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            transition: var(--transition);
        }

        .benefit:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 22px;
            color: var(--primary);
        }

        .benefit-text h4 {
            font-size: 17px;
            margin-bottom: 5px;
        }

        .benefit-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 50px;
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Right Panel - Registration Form */
        .right-panel {
            flex: 1.3;
            padding: 30px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
            overflow-y: auto;
        }

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

        .form-header h1 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-header p {
            color: var(--gray);
            font-size: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        .progress-bar {
            height: 6px;
            background: #EDF2F7;
            border-radius: 3px;
            margin-bottom: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            width: 33.33%;
            border-radius: 3px;
            transition: var(--transition);
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #EDF2F7;
            color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 10px;
            border: 3px solid white;
            transition: var(--transition);
        }

        .step.active .step-number {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(93, 105, 242, 0.3);
        }

        .step-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }

        .step.active .step-label {
            color: var(--dark);
            font-weight: 600;
        }

        /* Form Steps */
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .form-step.active {
            display: block;
        }

        .form-row {
            display: flex;
            gap: 20px;
            /* margin-bottom: 25px; */
        }

        .form-group {
            flex: 1;
            margin-bottom: 5px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--dark);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .form-label span {
            color: #054e11;
            font-size: 18px;
        }

        .input-with-icon {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 8px 20px 8px 55px;
            border: 2px solid #E2E8F0;
            border-radius: var(--radius);
            font-size: 15px;
            transition: var(--transition);
            background: #F7FAFC;
            -webkit-border-radius: var(--radius);
            -moz-border-radius: var(--radius);
            -ms-border-radius: var(--radius);
            -o-border-radius: var(--radius);
}

        .form-input:focus {
            border-color: var(--secondary);
            background: white;
            outline: none;
            box-shadow: 0 0 0 4px rgba(93, 105, 242, 0.1);
        }

        .form-input.valid {
            border-color: var(--success);
        }

        .form-input.error {
            border-color: #1a4b04;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 18px;
            transition: var(--transition);
        }

        .form-input:focus + .input-icon {
            color: var(--secondary);
        }

        .password-toggle {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 18px;
            transition: var(--transition);
        }

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

        .validation-message {
            font-size: 13px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
            opacity: 0;
            transform: translateY(-5px);
            transition: var(--transition);
        }

        .validation-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .validation-message.error {
            color: #06500e;
        }

        .validation-message.success {
            color: var(--success);
        }

        .terms-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 15px;
            background: #F8F9FA;
            border-radius: 10px;
        }

        .terms-checkbox {
            margin-right: 15px;
            margin-top: 5px;
            accent-color: var(--secondary);
        }

        .terms-text {
            font-size: 14px;
            color: var(--gray);
        }

        .terms-text a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
        }

        .terms-text a:hover {
            text-decoration: underline;
        }

        /* Button Styles */
        .button-group {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .btn {
            padding: 16px 35px;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 150px;
            justify-content: center;
        }

        .btn-prev {
            background: #EDF2F7;
            color: var(--dark);
        }

        .btn-prev:hover {
            background: #E2E8F0;
            transform: translateX(-5px);
        }

        .btn-next, .btn-submit {
            background: linear-gradient(45deg, var(--secondary), #7B68EE);
            color: white;
            box-shadow: 0 8px 20px rgba(93, 105, 242, 0.3);
        }

        .btn-next:hover, .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(93, 105, 242, 0.4);
        }

        .btn-submit {
            background: linear-gradient(45deg, var(--success), #067226);
        }

        .btn-submit:hover {
            box-shadow: 0 12px 25px rgba(76, 217, 100, 0.4);
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }

        /* Social Login */
        .social-section {
            text-align: center;
            margin-top: 20px;
            /* padding-top: 30px; */
            border-top: 1px solid #E2E8F0;
        }

        .social-title {
            color: var(--gray);
            margin-bottom: 5px;
            font-size: 15px;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }


        .social-btn:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* Success Message */
        .success-message {
            text-align: center;
            padding: 40px 20px;
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--success), #09813b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
            animation: bounce 1s;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }

        .success-message h2 {
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .success-message p {
            color: var(--gray);
            font-size: 16px;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .registration-container {
                flex-direction: column;
                max-width: 700px;
                min-height: auto;
            }

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

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .right-panel {
                padding: 40px 25px;
            }

            .form-header h1 {
                font-size: 28px;
            }

            .button-group {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
            }

            .progress-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .step {
                flex: 0 0 calc(33.33% - 20px);
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }

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

            .logo {
                flex-direction: column;
                text-align: center;
            }

            .logo-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .benefit {
                flex-direction: column;
                text-align: center;
            }

            .benefit-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .stats {
                flex-direction: column;
                gap: 20px;
            }

            .social-buttons {
                flex-wrap: wrap;
            }
        }

        /* Password Strength Indicator */
        .password-strength {
            height: 5px;
            background: #E2E8F0;
            border-radius: 3px;
            margin-top: 10px;
            overflow: hidden;
            position: relative;
        }

        .strength-bar {
            height: 100%;
            width: 0%;
            border-radius: 3px;
            transition: var(--transition);
        }

        .strength-weak { background: #157b09; width: 25%; }
        .strength-fair { background: #3ff312; width: 50%; }
        .strength-good { background: #34db4d; width: 75%; }
        .strength-strong { background: var(--success); width: 100%; }

        .strength-text {
            font-size: 12px;
            margin-top: 5px;
            text-align: right;
        }
        .progress-bar {
background-color: gray !important;
        }