
        /* Root Variables */
        :root {
            --primary-color: #2e8b57;
            --secondary-color: #001f3f;
            --accent-color: #29a19c;
            --text-color: #333;
            --text-light: #6c757d;
            --bg-light: #f8f9fa;
            --border-color: #e2e8f0;
            --error-color: #dc3545;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito Sans', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-light);
            min-height: 100vh;
        }

        /* Login Page Layout */
        .login-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .login-wrapper {
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 600px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* Left Panel - Branded Side */
        .login-left {
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            display: none;
            /* Hidden on mobile */
        }

        .login-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .login-content {
            position: relative;
            z-index: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .brand-logo {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .login-content h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .welcome-text {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 80%;
            line-height: 1.6;
        }

        .features {
            margin-top: auto;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .feature-item i {
            margin-right: 10px;
            font-size: 1.2rem;
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-item span {
            font-weight: 600;
        }

        /* Demo Section */
        .demo-section {
            margin-top: 2rem;
        }

        .demo-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .demo-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .demo-btn i {
            font-size: 1.1rem;
        }

        /* Right Panel - Form Side */
        .login-right {
            flex: 1;
            background-color: white;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-form-container {
            width: 100%;
            max-width: 400px;
        }

        .login-header {
            margin-bottom: 2rem;
            text-align: center;
        }

        .login-header h2 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            font-size: 1.8rem;
        }

        .login-header p {
            color: var(--text-light);
        }

        /* Form Elements */
        .login-form {
            margin-bottom: 2rem;
        }

        .input-group {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            z-index: 1;
        }

        .input-field {
            position: relative;
            width: 100%;
        }

        .input-field input {
            width: 100%;
            padding: 1rem 1rem 1rem 45px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
            color: var(--text-color);
        }

        .input-field input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
        }

        .input-field input::placeholder {
            color: #adb5bd;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0;
            font-size: 1rem;
        }

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

        .error-message {
            color: var(--error-color);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: block;
        }

        /* Remember Me & Forgot Password */
        .login-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .remember-me label {
            cursor: pointer;
            user-select: none;
        }

        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        /* Buttons */
        .btn-login {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .btn-login span {
            margin-right: 8px;
        }

        .btn-login i {
            transition: transform 0.3s ease;
        }

        .btn-login:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .btn-login:hover i {
            transform: translateX(4px);
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 1.5rem 0;
        }

        .divider span {
            padding: 0 1rem;
            color: var(--text-light);
            font-size: 0.875rem;
            text-transform: uppercase;
            font-weight: 600;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-color);
        }

        /* Google Button */
        .btn-google {
            width: 100%;
            padding: 0.875rem;
            background-color: rgb(45, 45, 233);
            color: var(--text-color);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }



        .btn-google:hover {

            box-shadow: var(--shadow-lg);
        }

        /* Signup Link */
        .signup-link {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .signup-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
        }

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

        /* Copyright */
        .copyright {
            margin-top: 2rem;
            text-align: center;
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            .login-left {
                display: block;
            }

            .login-right {
                border-top-right-radius: var(--border-radius);
                border-bottom-right-radius: var(--border-radius);
            }
        }

        /* Add custom error styles for form validation */
        .is-invalid {
            border-color: var(--error-color) !important;
        }

        .is-invalid:focus {
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
        }

        /* Animation for page load */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-form-container {
            animation: fadeIn 0.5s ease-out;
        }

        .captcha {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            background-color: #f1f3f5;
            padding: 10px;
            border-radius: 8px;
        }

        .captcha span {
            flex-grow: 1;
        }

        .captcha button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .certification-services {
            background: rgba(255, 255, 255, 0.15);
            padding: 15px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
            margin-top: 20px;
        }

        .certification-services h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .service-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-badges .badge {
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .certification-services {
                padding: 12px;
            }

            .service-badges .badge {
                font-size: 12px;
                padding: 6px 10px;
            }
        }

        /* Demo Modal Styles */
        #demoModal .modal-content {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
        }

        #demoModal .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-bottom: none;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        #demoModal .modal-title {
            font-weight: 600;
        }

        #demoModal .btn-close {
            background: none;
            opacity: 1;
            filter: brightness(0) invert(1);
        }

        #demoModal .modal-footer {
            border-top: 1px solid var(--border-color);
            background-color: var(--bg-light);
        }

        #demoModal .ratio iframe {
            border-radius: 0;
        }

        /* Responsive adjustments for demo button */
        @media (max-width: 768px) {
            .demo-section {
                margin-top: 1.5rem;
                text-align: center;
            }

            .demo-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }