            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                -webkit-tap-highlight-color: transparent;
                /* Remove overflow: hidden from here */
            }

            html, body {
                overflow-x: hidden;
                max-width: 100vw;
                position: relative;
            }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column !important;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: background-color 0.3s ease;
            overflow-x: hidden !important;
        }

        ::-webkit-scrollbar {
            display: none;
        }

            .star {
      position: absolute;
      width: 2px;
      height: 2px;
      background: white;
      border-radius: 50%;
      animation: twinkle 3s infinite ease-in-out,
      drift var(--drift-duration) infinite linear;
      animation-delay: 0s, var(--drift-delay);
      z-index: -1;
      overflow-x: hidden !important;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    @keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(25vw, -5vh);
  }
  50% {
    transform: translate(50vw, 2vh);
  }
  75% {
    transform: translate(75vw, -3vh);
  }
  100% {
    transform: translate(100vw, 0);
  }
}

        .container {
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,.05);
            padding: 2rem;
            width: 100%;
            max-width: 450px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            overflow-x: hidden !important;
        }

        h1 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #1a1a1a;
            transition: color 0.3s ease;
            pointer-events: none;
        }

        h1 img {
            width: 35px;
        }

        .tabs {
            display: flex;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #d1d5db;
            transition: border-color 0.3s ease;
            overflow-x: hidden !important;
        }

        .tab {
            flex: 1;
            padding: 0.75rem;
            text-align: center;
            cursor: pointer;
            color: #6b7280;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
            font-weight: 500;
            font-size: 14px;
        }

        .tab.active {
            color: #3b82f6;
            border-bottom-color: #3b82f6;
        }

        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .input-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #6b7280;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            background-color: white;
            color: #1f2937;
            transition: all 0.2s ease;
        }

        input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .error-message {
            color: #ef4444;
            font-size: 12px;
            margin-top: 6px;
            display: none;
            padding-left: 16px;
        }

        .btn {
            width: 100%;
            padding: 12px 24px;
            border: 1px solid #d1d5db;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            background: white;
            color: #6b7280;
        }

        .btn-primary {
            background-color: #000000;
            border-color: #000000;
            color: white;
            margin-top: 1rem;
        }

        .btn-primary:hover:not(:disabled) {
            background-color: #282828;
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-google {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            background-color: white;
            color: #6b7280;
        }

        .btn-google:hover {
            background-color: #f9fafb;
            border-color: #9ca3af;
        }

        .btn-google img {
            width: 18px;
        }

        .link {
            text-align: center;
            margin-top: 1rem;
            font-size: 14px;
        }

        .link a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .link a:hover {
            color: #2563eb;
            text-decoration: underline;
        }

        .divider {
            text-align: center;
            margin: 1.5rem 0;
            color: #6b7280;
            font-size: 14px;
        }

        h3 {
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        p {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            transition: color 0.3s ease;
        }


        iframe {
            width: 100% !important;
        }

        /* Dark Mode Styles */
        @media (prefers-color-scheme: dark) {
            body {
                background-color: #000000;
            }

            .container {
                background-color: #101010;
                border-color: #5f6368;
                box-shadow: 0 2px 5px 1px rgba(32,33,36,.28);
            }

            h1 {
                color: #e8eaed;
            }

            h1 img {
                filter: invert(1);
            }

            h3 {
                color: #e8eaed;
            }

            p {
                color: #9aa0a6;
            }

            .tabs {
                border-bottom-color: #5f6368;
            }

            .tab {
                color: #9aa0a6;
            }

            .tab.active {
                color: #eef2ff;
                border-bottom-color: #eef2ff;
            }

            label {
                color: #9aa0a6;
            }

            input {
                background-color: #101010;
                border-color: #4545456d;
                color: #e8eaed;
                box-shadow: 0 2px 5px 1px rgba(32,33,36,.28);
            }

            input:focus {
                border-color: #9aa0a6;
                box-shadow: 0 2px 5px 1px rgba(32,33,36,.28), 0 0 0 3px rgba(255,255,255,.1);
            }

            .error-message {
                color: #f87171;
            }

            .btn {
                background-color: #101010;
                color: #e8eaed;
                border-color: #5f6368;
                box-shadow: 0 2px 5px 1px rgba(32,33,36,.28);
            }

            .btn-primary {
                background-color: #eef2ff;
                color: #000000;
                border-color: #5f6368;
            }

            .btn-primary:hover:not(:disabled) {
                background-color: #cfd3e1;
                border-color: #9aa0a6;
            }

            .btn-google {
                background-color: #101010;
                color: #e8eaed;
                border-color: #5f6368;
            }

            .btn-google:hover {
                background-color: #3c4043;
                border-color: #9aa0a6;
            }

            .link a {
                color: #eef2ff;
            }

            .link a:hover {
                color: #cfd3e1;
            }

            .divider {
                color: #9aa0a6;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }

            h1 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 8px;
                justify-content: stretch;
                overflow: hidden;
            }

            @media (prefers-color-scheme: dark) {
                body {
                    background-color: #101010;
                }
            }

            .container {
                width: 100%;
                background-color: transparent;
                border: none;
                box-shadow: none;
                
            }

            h1 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            input {
                padding: 10px 14px;
                font-size: 14px;
            }

            .btn {
                padding: 10px 20px;
            }
        }