.page-auth {
            --bg-left: #09090b; /* Exact dark background */
            --input-bg: #161618; /* Exact dark grey for inputs */
            --text-grey: #a1a1aa; /* Muted text color */
            --neon-green: #b2ff23; /* Exact neon green */
            --font-main: 'Manrope', sans-serif;
        }

        .page-auth, .page-auth {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: var(--font-main);
            background-color: var(--bg-left);
            color: #ffffff;
            overflow: hidden; 
        }

        /* ---------------- LEFT PANEL ---------------- */
        .left-panel {
            background-color: var(--bg-left);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }

        /* Exact form width and padding from screenshot */
        .form-container {
            width: 100%;
            max-width: 420px; 
            margin-top: -2rem; /* Slight optical adjustment to center perfectly */
        }

        .switch-brand {
            color: var(--text-grey);
            font-size: 0.8125rem;
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
            margin-bottom: 1.25rem;
            display: inline-block;
            transition: color 0.2s ease;
        }
        
        .switch-brand:hover {
            color: #ffffff;
        }

        .switch-brand span {
            text-decoration: none;
            display: inline-block;
            margin-left: 2px;
        }

        .main-heading {
            font-size: 1.65rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.4rem;
        }

        .main-heading .highlight {
            color: var(--neon-green);
        }

        .sub-heading {
            color: var(--text-grey);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 2.25rem; /* Exact padding */
            max-width: 95%;
        }

        /* Form Elements */
        .page-auth .form-label {
            color: var(--text-grey);
            font-size: 0.8125rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .page-auth .form-control {
            background-color: var(--input-bg);
            border: 1px solid transparent;
            color: #ffffff;
            border-radius: 8px; /* Slightly rounder edges */
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            height: 44px; /* Exact height matching screenshot */
            box-shadow: none !important;
        }

        .page-auth .form-control::placeholder {
            color: #52525b;
            font-weight: 400;
        }

        .form-control:focus {
            background-color: var(--input-bg);
            border-color: #3f3f46;
            color: #ffffff;
        }

        .input-group-margin {
            margin-bottom: 1.25rem; /* Exact spacing between form fields */
        }

        .forgot-password {
            color: var(--text-grey);
            font-size: 0.8125rem;
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
            transition: color 0.2s ease;
        }

        .forgot-password:hover {
            color: #ffffff;
        }

        /* Submit Button */
        .btn-submit {
            background-color: var(--neon-green);
            color: #000000;
            font-weight: 700;
            width: 100%;
            padding: 0.875rem;
            border-radius: 8px;
            border: none;
            font-size: 0.95rem;
            transition: opacity 0.2s ease;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        .btn-submit:hover {
            opacity: 0.9;
        }

        /* Login Link */
        .login-wrapper {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-grey);
        }

        .login-wrapper a {
            color: var(--text-grey);
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
        }
        
        .login-wrapper a:hover {
            color: #ffffff;
        }

        .auth-alert {
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            margin-bottom: 1.25rem;
            font-weight: 500;
        }

        .auth-alert-danger {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.35);
            color: #fca5a5;
        }

        .auth-alert-success {
            background: rgba(178, 255, 35, 0.1);
            border: 1px solid rgba(178, 255, 35, 0.35);
            color: var(--neon-green);
        }

        /* ---------------- RIGHT PANEL ---------------- */
        .right-panel {
            height: 100vh;
            background-color: #2a0352;
            background-image: url('https://www.clipflip.io/_next/static/media/login-background.874c8e9e.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            padding-left: 5rem;
            overflow: hidden;
            border-left: 1px solid #161618;
        }

        .right-content {
            position: relative;
            z-index: 10;
        }

        .marketing-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.04em;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .emoji {
            font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
            font-size: 3rem;
            vertical-align: middle;
        }

        /* Avatar Section */
        .trusted-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .avatars {
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #000000;
            margin-left: -10px;
            background-color: #27272a; 
            object-fit: cover;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .trusted-text {
            color: #e4e4e7;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .right-panel {
                display: none;
            }
            .page-auth, .page-auth {
                overflow: auto;
            }
            .form-container {
                margin-top: 0;
            }
        }

/* Signup-only */
/* ---------------- LEFT PANEL ---------------- */
        .left-panel {
            background-color: var(--bg-left);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }

        /* Exact form width and padding from screenshot */
        .form-container {
            width: 100%;
            max-width: 420px; 
            margin-top: -2rem; /* Slight optical adjustment to center perfectly */
        }

        .switch-brand {
            color: var(--text-grey);
            font-size: 0.8125rem;
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
            margin-bottom: 1.25rem;
            display: inline-block;
            transition: color 0.2s ease;
        }
        
        .switch-brand:hover {
            color: #ffffff;
        }

        .switch-brand span {
            text-decoration: none;
            display: inline-block;
            margin-left: 2px;
        }

        .main-heading {
            font-size: 1.65rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.4rem;
        }

        .main-heading .highlight {
            color: var(--neon-green);
        }

        .sub-heading {
            color: var(--text-grey);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 2.25rem; /* Exact padding */
            max-width: 95%;
        }

        /* Form Elements */
        .page-auth .form-label {
            color: var(--text-grey);
            font-size: 0.8125rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .page-auth .form-control {
            background-color: var(--input-bg);
            border: 1px solid transparent;
            color: #ffffff;
            border-radius: 8px; /* Slightly rounder edges */
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            height: 44px; /* Exact height matching screenshot */
            box-shadow: none !important;
        }

        .page-auth .form-control::placeholder {
            color: #52525b;
            font-weight: 400;
        }

        .form-control:focus {
            background-color: var(--input-bg);
            border-color: #3f3f46;
            color: #ffffff;
        }
        
        .gap-custom {
            gap: 12px; /* Exact gap between first and last name */
        }

        .input-group-margin {
            margin-bottom: 1.25rem; /* Exact spacing between form fields */
        }

        /* Checkbox Area */
        .terms-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1.25rem;
            margin-top: 1.5rem;
        }

        .page-auth .form-check-input {
            background-color: transparent;
            border: 1px solid #52525b;
            width: 1.1rem;
            height: 1.1rem;
            border-radius: 4px;
            margin: 0;
            cursor: pointer;
            box-shadow: none !important;
        }

        .form-check-input:checked {
            background-color: var(--neon-green);
            border-color: var(--neon-green);
        }

        .terms-text {
            color: var(--text-grey);
            font-size: 0.8125rem;
            margin: 0;
        }

        .terms-text a {
            color: var(--text-grey);
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
        }

        .terms-text a:hover {
            color: #ffffff;
        }

        /* Submit Button */
        .btn-submit {
            background-color: var(--neon-green);
            color: #000000;
            font-weight: 700;
            width: 100%;
            padding: 0.875rem;
            border-radius: 8px;
            border: none;
            font-size: 0.95rem;
            transition: opacity 0.2s ease;
            margin-bottom: 1rem;
        }

        .btn-submit:hover {
            opacity: 0.9;
        }

        /* Login Link */
        .login-wrapper {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--text-grey);
        }

        .login-wrapper a {
            color: var(--text-grey);
            text-decoration: underline;
            text-decoration-color: #52525b;
            text-underline-offset: 3px;
        }
        
        .login-wrapper a:hover {
            color: #ffffff;
        }

        .auth-alert {
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.8125rem;
            margin-bottom: 1.25rem;
            font-weight: 500;
        }

        .auth-alert-danger {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.35);
            color: #fca5a5;
        }

        .auth-alert-success {
            background: rgba(178, 255, 35, 0.1);
            border: 1px solid rgba(178, 255, 35, 0.35);
            color: var(--neon-green);
        }

        /* ---------------- RIGHT PANEL ---------------- */
        .right-panel {
            height: 100vh;
            background-color: #2a0352;
            background-image: url('https://www.clipflip.io/_next/static/media/login-background.874c8e9e.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            padding-left: 5rem;
            overflow: hidden;
            border-left: 1px solid #161618;
        }

        .right-content {
            position: relative;
            z-index: 10;
        }

        .marketing-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.04em;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .emoji {
            font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
            font-size: 3rem;
            vertical-align: middle;
        }

        /* Avatar Section */
        .trusted-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .avatars {
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #000000;
            margin-left: -10px;
            background-color: #27272a; 
            object-fit: cover;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .trusted-text {
            color: #e4e4e7;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .right-panel {
                display: none;
            }
            .page-auth, .page-auth {
                overflow: auto;
            }
            .form-container {
                margin-top: 0;
            }
        }
