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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            /* Smoother, more subtle gradient */
            background: linear-gradient(135deg, #18181a 0%, #23232a 40%, #3a2a3d 70%, #ff4da6 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Desktop Landscape View */
        .desktop-container {
            display: none;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .desktop-box {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 25px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
            overflow: hidden;
            width: 100%;
            max-width: 1200px;
            height: 800px;
            display: flex;
        }

        .left-panel {
            flex: 1;
            background: rgba(18, 18, 18, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            position: relative;
        }

        .left-panel::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            bottom: 10%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, #ff007f, transparent);
        }

        .left-logo-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .left-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .left-logo-icon {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .left-logo-text {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #ff007f, #ff4da6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .left-tagline {
            font-size: 18px;
            color: #888;
            margin-top: 10px;
        }

        .tip-section {
            background: rgba(255, 0, 127, 0.1);
            border: 1px solid rgba(255, 0, 127, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 40px;
            max-width: 400px;
            text-align: center;
        }

        .tip-title {
            color: #ff007f;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .tip-text {
            color: #ccc;
            font-size: 15px;
            line-height: 1.6;
        }

        .left-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 400px; /* Match .tip-section max-width */
            margin: 0 auto;
        }

        .left-google-btn, .enterprise-btn {
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #2a2a2a;
            border: 2px solid #444;
            color: #ffffff;
        }

        .left-google-btn:hover, .enterprise-btn:hover {
            background: #333;
            border-color: #555;
            transform: translateY(-2px);
        }

        .right-panel {
            flex: 1;
            background: rgba(30, 30, 30, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .right-form-container {
            width: 100%;
            max-width: 380px;
        }

        /* Mobile Container */
        .mobile-container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .login-container {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }

        .login-container.loading {
            pointer-events: none;
        }

        .login-container.loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(30, 30, 30, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .login-container.loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            margin: -20px 0 0 -20px;
            border: 3px solid #333;
            border-top: 3px solid #ff007f;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 1001;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .logo-section {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
        }

        .logo-tagline {
            font-size: 16px;
            color: #888;
            margin-top: 5px;
        }

        .form-toggle {
            display: flex;
            background: #2a2a2a;
            border-radius: 15px;
            padding: 6px;
            margin-bottom: 25px;
        }

        .toggle-option {
            flex: 1;
            padding: 12px 20px;
            text-align: center;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 15px;
            color: #888;
        }

        .toggle-option.active {
            background: #ff007f;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .toggle-option:hover:not(.active) {
            color: #fff;
            background: #333;
        }

        .form-section {
            display: none;
        }

        .form-section.active {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }

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

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #ffffff;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px;
            background: #2a2a2a;
            border: 2px solid #444;
            border-radius: 12px;
            color: #ffffff;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #ff007f;
            background: #333;
            box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.1);
        }

        .form-input::placeholder {
            color: #666;
        }

        .password-toggle {
            position: relative;
        }

        .password-toggle-btn {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .password-toggle-btn:hover {
            color: #ff007f;
        }

        .forgot-password {
            text-align: right;
            margin-top: 6px;
        }

        .forgot-password a {
            color: #ff007f;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: #ff4da6;
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: #ff007f;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 16px;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .submit-btn:hover {
            background: #e6006e;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 16px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #444;
        }

        .divider span {
            padding: 0 15px;
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }

        .google-btn {
            width: 100%;
            padding: 14px;
            background: #2a2a2a;
            border: 2px solid #444;
            border-radius: 12px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 400px; /* Match .tip-section max-width */
            margin: 0 auto;
        }

        .google-btn:hover {
            background: #333;
            border-color: #555;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .google-icon {
            width: 20px;
            height: 20px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%23ffffff" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23ffffff" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23ffffff" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
            background-size: contain;
        }

        .enterprise-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .enterprise-icon.google-g {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-home {
            text-align: center;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid #333;
        }

        .back-home a {
            color: #888;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .back-home a:hover {
            color: #ff007f;
        }

        .terms-text {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-top: 16px;
            line-height: 1.5;
        }

        .terms-text a {
            color: #ff007f;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* ===== Enterprise Domain Prompt Themed Styles ===== */
        .enterprise-domain-container {
          min-height: 100vh;
          display: flex;
          align-items: center;
          justify-content: center;
          background: linear-gradient(135deg, #18181a 0%, #23232a 40%, #3a2a3d 70%, #ff4da6 100%);
        }

        .enterprise-domain-box {
          background: #1e1e1e;
          border: 1px solid #333;
          border-radius: 20px;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
          padding: 40px 32px 32px 32px;
          max-width: 600px;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .enterprise-domain-title {
          color: #fff;
          font-size: 1.7rem;
          font-weight: 800;
          margin-bottom: 1.5rem;
          text-align: center;
          letter-spacing: 0.5px;
        }

        .enterprise-domain-input {
          width: 100%;
          padding: 14px 16px;
          background: #2a2a2a;
          border: 2px solid #444;
          border-radius: 12px;
          color: #fff;
          font-size: 1rem;
          margin-bottom: 1.2rem;
          transition: all 0.3s ease;
        }

        .enterprise-domain-input:focus {
          outline: none;
          border-color: #ff007f;
          background: #333;
          box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.1);
        }

        .enterprise-domain-btn {
          width: 100%;
          padding: 14px;
          background: #ff007f;
          color: #fff;
          border: none;
          border-radius: 12px;
          font-size: 1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s ease;
          margin-bottom: 8px;
          box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
        }

        .enterprise-domain-btn:hover {
          background: #e6006e;
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(255, 0, 127, 0.4);
        }

        .enterprise-domain-error {
          color: #e74c3c;
          margin-top: 8px;
          text-align: center;
          font-size: 0.97rem;
          min-height: 1.2em;
        }

        @media (max-width: 480px) {
          .enterprise-domain-box {
            padding: 24px 10px 18px 10px;
            border-radius: 14px;
          }
          .enterprise-domain-title {
            font-size: 1.2rem;
          }
          .enterprise-domain-input, .enterprise-domain-btn {
            font-size: 0.97rem;
            border-radius: 10px;
            padding: 12px 10px;
          }
        }

        /* Responsive Breakpoints */
        @media (min-width: 1024px) {
            .desktop-container {
                display: flex;
            }
            .mobile-container {
                display: none;
            }
        }

        @media (max-width: 1023px) {
            .desktop-container {
                display: none;
            }
            .mobile-container {
                display: flex;
            }
        }

        /* Desktop responsive adjustments */
        @media (min-width: 1024px) and (max-width: 1300px) {
            .desktop-box {
                max-width: 1000px;
                height: 750px;
            }
            
            .left-logo-text {
                font-size: 42px;
            }
            
            .left-panel, .right-panel {
                padding: 50px 40px;
            }
        }

        @media (min-width: 1301px) {
            .desktop-box {
                max-width: 1200px;
                height: 800px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-container {
                padding: 15px;
            }

            .login-container {
                padding: 30px;
                max-width: 450px;
            }

            .logo-text {
                font-size: 28px;
            }

            .logo-tagline {
                font-size: 15px;
            }

            .form-input, .submit-btn, .google-btn {
                padding: 14px 16px;
                font-size: 15px;
            }

            .toggle-option {
                padding: 12px 18px;
                font-size: 14px;
            }
        }

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

            .login-container {
                padding: 25px;
                border-radius: 15px;
            }

            .logo {
                gap: 10px;
            }

            .logo-icon {
                width: 32px;
                height: 32px;
            }

            .logo-text {
                font-size: 24px;
            }

            .logo-tagline {
                font-size: 14px;
            }

            .form-toggle {
                padding: 4px;
                border-radius: 12px;
            }

            .toggle-option {
                padding: 10px 14px;
                font-size: 13px;
                border-radius: 8px;
            }

            .form-group {
                margin-bottom: 14px;
            }

            .form-group label {
                font-size: 13px;
                margin-bottom: 6px;
            }

            .form-input, .submit-btn, .google-btn {
                padding: 12px 14px;
                font-size: 14px;
                border-radius: 10px;
            }

            .password-toggle-btn {
                right: 12px;
                font-size: 14px;
            }

            .divider span {
                font-size: 13px;
                padding: 0 12px;
            }

            .google-icon, .enterprise-icon {
                width: 16px;
                height: 16px;
            }

            .terms-text {
                font-size: 11px;
            }

            .back-home a {
                font-size: 13px;
            }
        }
              
    .google-btn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
      }
      .error {
        color: #e74c3c;
        margin-top: 8px;
        text-align: center;
      }