
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            min-height: 600px;
        }

        /* Left Side - Login Form */
        .container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
            padding: 43px;
            height: 500px;
        }

        .logo-section {
            margin-bottom: 40px;
        }

        .logo-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 47px;
        }

        .logo-text {
            text-align: left;
            flex: 1;
            
        }

        .logo-text h1 {
            color: #667eea;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .logo-text p {
            color: #666;
            font-size: 14px;
        }

        .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .logo-left {
            margin-right: 10px;
        }

        .logo-right {
            margin-left: 10px;
        }

        .container > h2 {
            color: #333;
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .container > p:first-of-type {
            color: #666;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .input-group {
            margin-bottom: 25px;
        }

        .input-group label {
            display: block;
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 14px;
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .loading-content {
            text-align: center;
            color: white;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 24px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .loading-subtext {
            font-size: 14px;
            opacity: 0.9;
        }

        .loading-dots {
            display: inline-block;
        }

        .loading-dots span {
            animation: blink 1.4s infinite;
            animation-fill-mode: both;
        }

        .loading-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loading-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes blink {
            0%, 80%, 100% { opacity: 0; }
            40% { opacity: 1; }
        }

        #emailInput,
        .login-pwd-wrapper input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            box-sizing: border-box;
        }

        #emailInput:focus,
        .login-pwd-wrapper input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        /* suppress autofill highlight on login inputs */
        #emailInput:-webkit-autofill,
        .login-pwd-wrapper input:-webkit-autofill {
            -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
            -webkit-text-fill-color: #333;
            border: 2px solid #e0e0e0;
            transition: background-color 5000s ease-in-out 0s;
        }

        .login-pwd-wrapper {
            position: relative;
        }

        .login-pwd-wrapper input {
            padding-right: 48px;
        }

        .login-pwd-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            font-size: 16px;
            color: #888;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-pwd-toggle:hover {
            color: #444;
        }

        .login-pwd-toggle i {
            pointer-events: none;
        }

        #verifyBtn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        #verifyBtn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        #verifyBtn:active {
            transform: translateY(0);
        }

        #message {
            margin-top: 20px;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            text-align: center;
            display: none;
        }

        #message.success {
            background: #d4edda;
            color: #155724;
            display: block;
        }

        #message.error {
            background: #f8d7da;
            color: #721c24;
            display: block;
        }

        /* Right Side - Infographic */
        .infographic-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            height: 601px;
        }

        .meeting-visual {
            text-align: center;
            margin-bottom: 0px;
        }

        .meeting-visual svg {
            width: 100%;
            max-width: 300px;
            height: auto;
        }

        .stats-container {
            display: flex;
            flex-direction: row;
            gap: 20px;
            justify-content: space-around;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
            width: 100%;
        }

        .stat-card:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-card h3 {
            font-size: 26px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .stat-card p {
            font-size: 14px;
            opacity: 0.9;
        }

        .features-list {
            margin-top: 30px;
        }

        .features-list h3 {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .feature-item svg {
            width: 24px;
            height: 24px;
            margin-right: 12px;
        }

        @media (max-width: 968px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }

            .infographic-section {
                display: block;
            }
            .logo-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 41px;
        }

        }

        @media (max-width: 480px) {
            .container {
                padding: 40px 30px;
            }

            .container > h2 {
                font-size: 24px;
            }
            .logo-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 42px;
        }

        }