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

        body, form.signup_in-form {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-family: "Mona Sans","Helvetica Neue", "Helvetica", "Arial", sans-serif;
            height: 100vh;
            overflow: hidden;
            overflow-y: scroll;
        }

        .container {
            display: flex;
            min-height: 100vh;
        }

        /* Left side - Signup Form */
        .left-side {
            flex: 1;
            background: white;
            display: flex;
            flex-direction: column;
        }

        .header {
            padding: 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1a1a1a;
            text-decoration: none;
        }

        .logo img.vb-logo {
            width: 100px;
        }

        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .signin-form-el {
            /* Only applies for /signup */
            display: none;
        }

        .signup-form {
            max-width: 320px;
        }
        .from-invite-container .signup-form {
            margin: auto;
        }
        /* VIEWBUG Icon */
        .viewbug-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .icon-container {
            width: 44px;
            height: 44px;
            /* background: linear-gradient(135deg, #ec4899, #db2777); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .icon-container img {
            width: 100%;
        }

        /* Welcome text */
        .welcome-text {
            text-align: center;
            margin-bottom: 2rem;
        }

        .welcome-text h1 {
            font-size: 1.5rem;
            font-weight: bold;
            color: rgb(13, 12, 34);
            margin-bottom: 1.5rem;
        }

        .welcome-text p {
            color: rgb(13, 12, 34);
            font-size: 14px;
            font-weight: 400;
            line-height: 17px;
            margin-top: -4px;
        }

        /* Form elements */
        .form-group {
            margin-bottom: 1rem;
        }

        .google-btn {
            width: 100%;
            height: 48px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            color: #374151;
            cursor: pointer;
            transition: background-color 0.2s;
            text-decoration: none;
        }

        .google-btn:hover {
            background: #f3f4f6;
        }

        .google-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
        }

        .divider {
            position: relative;
            margin: 1.5rem 0;
            text-align: center;
        }

        .divider span {
            background: white;
            padding: 0 0.5rem;
            color: #6b7280;
            font-size: 0.875rem;
        }

        .signup_signin-input {
            font-family: 'Mona Sans';
            width: 100%;
            height: 48px;
            color: rgb(13, 12, 34);
            padding: 0 1rem;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            background-origin: border-box;
            background-clip: padding-box, border-box;
            font-size: 0.9rem;
            line-height: 16px;
            transition: background-image 0.3s ease; /* Smooth transition for the gradient */
        }

        .signup_signin-input:focus {
            border: double 1.4px transparent; /* Transparent border to reveal the background */
            outline: none;
            box-shadow: 0 0 0 3px rgba(72, 213, 236, 0.1);
            background-image: linear-gradient(white, white), linear-gradient(to right, rgb(94 67 218 / 70%), rgb(87 195 180 / 70%), rgb(22 119 119 / 70%)) !important;
        }

        .signup_signin-input::placeholder {
            color: #9ca3af;
        }

        .continue-btn {
            width: 100%;
            height: 45px;
            background: #1f2937;
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .continue-btn:hover {
            background: #111827;
        }

        .footer-text {
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.4;
            margin-top: 1.5rem;
        }

        .footer-text p {
            font-size: 12px;
            line-height: 15px;
            font-weight: 400;
            color: #7b7194;
        }

        .footer-text a {
            color: #374151;
            text-decoration: none;
        }

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

        .footer-text span#sign-in-up-cta {
            color: #374151;
            text-decoration: none;
        }

        .footer-text span#sign-in-up-cta:hover {
            text-decoration: underline;
            cursor: pointer;
        }

        /* Right side - 3D Scene */
        .right-side {
            flex: 0 400px;
/*            flex: 1;*/
            background: linear-gradient(135deg, #581c87, #1e3a8a, #581c87);
            position: relative;
            overflow: hidden;
        }

        .overlay {
            width: 100%;
            background: hsl(0deg 0% 0% / 25%);
            position: absolute;
            z-index: 1;
            top: 0;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .right-side {
                display: none;
            }
        }

        @media (max-width: 1200px) {
            .quote-container {
                top: 30% !important;
            }
        }

        @media screen and (max-width: 1200px) and screen and (max-height: 1200px) {
            body {
                overflow-y: scroll;
            }
             .container {
                height: unset;
            }
        }

 

        @media (max-width: 640px) {
            .header {
                padding: 1.5rem;
            }
            
            .main-content {
                padding: 3.5rem;
            }
            .left-side {
                width: 100%;
            }
            .signup-form {
                /* max-width: 400px; */
            }
        }
        .captcha-element {
            display: none;
        }
        .captcha-element-container {
            justify-content: center;
        }
        .input-error {
            box-shadow: 0 0 0 3px rgb(255 0 0 / 10%);
        }
        .input-error-text {
            display: none;
            color: #d10000;
            font-size: 13px;
            padding-top: 3px;
        }

        .right-side {
            background-image: url(https://www.viewbug.com/vb2/public/css/controller/user/bgs/login_bg_3.jpg);
            background-size: cover;
            background-position: center;
        }
        .quote-container {
            margin: auto;
            width: 100%;
            text-align: center;
            position: absolute;
            top: 50%;
            z-index: 2;
            padding: 30px;
        }

        .quote-container .double-quote {
            width: 50px;
            fill: white;
            padding-bottom: 20px;
        }

        .quote-text {
/*            font-size: 2rem;*/
            font-size: 1.5rem;
            color: white;
        }

        .quote-author {
            padding: 5px;
/*            font-size: 1.2rem;*/
font-size: 1rem;
            color: white;
        }

        .quote-text, .quote-author {
            text-shadow: 0px 0px 12px rgba(0,0,0,0.65);
        }

        .quote-divider {
            text-align: center;
            padding-bottom: 10px;
            padding-top: 10px;
            background-image: linear-gradient(to right, rgba(154,155,165,0)  10%, rgba(255,255,255,1) 50%, rgba(154,155,165,0)  90%);
            background-repeat: no-repeat;
            background-size: 600px 2px;
            background-position: center bottom;
        }

#ggbtn {
    width: 100% !important;
}

.forgot-pwd {
    font-size: 12px;
    color: #7b7194;
    text-decoration: none;
}

/* Modal Overlay */
._modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

/* Modal Container */
._modal {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f1f5f9;
    color: #64748b;
    transform: scale(1.1);
}

/* Email Icon */
.email-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceIn 0.6s ease-out 0.2s both;
    color: white;
}

/* Typography */
._modal h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

._modal .subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 32px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out 0.6s both;
    box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(102, 126, 234, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 640px) {
    ._modal {
        margin: 20px;
        padding: 36px 28px;
        border-radius: 16px;
    }

    ._modal h1 {
        font-size: 24px;
    }

    .email-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 28px;
    }
}

/* Hidden state for demo */
._modal-overlay.hidden {
    display: none;
}