        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .auth-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
        }

        .auth-grid {
            display: flex;
            justify-content: center;
            width: 100%;
            max-width: 400px;
            align-items: center;
        }

        .auth-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 0 32px 32px 32px;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .logo-section {
            text-align: center;
            margin: 0;
            margin-top: -15px;
        }

        .logo {
            height: 300px;
            width: auto;
            object-fit: contain;
            margin-bottom: -90px;
            margin-top: -60px;
            border-radius: 0.5rem;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .tagline {
            color: #6b7280;
            font-style: italic;
            margin-top: 10px;
            margin-bottom: 20px;
            position: relative;
            z-index: 0;
        }

        .tabs {
            margin-top: 60px;
            margin-bottom: 24px;
        }

        .tabs-list {
            display: flex;
            background: #f1f5f9;
            border-radius: 8px;
            padding: 4px;
            margin-bottom: 24px;
        }

        .tab-trigger {
            flex: 1;
            padding: 8px 16px;
            border: none;
            background: transparent;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            color: #64748b;
        }

        .tab-trigger.active {
            background: white;
            color: #1e293b;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

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

        .form-label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #374151;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.2s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #6b7280;
            padding: 4px;
        }

        .password-toggle:hover {
            color: #374151;
        }

        .form-button {
            width: 100%;
            padding: 12px;
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-bottom: 16px;
        }

        .form-button:hover {
            background: #1d4ed8;
        }

        .form-button:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

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

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

        .divider-text {
            padding: 0 16px;
            color: #6b7280;
            font-size: 14px;
        }

        .google-button {
            width: 100%;
            padding: 12px;
            background: white;
            color: #374151;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .google-button:hover {
            background: #f9fafb;
            border-color: #9ca3af;
        }

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

        .forgot-password {
            text-align: center;
            margin-top: 16px;
        }

        .forgot-password button {
            background: none;
            border: none;
            color: #2563eb;
            text-decoration: underline;
            cursor: pointer;
            font-size: 14px;
        }

        .forgot-password button:hover {
            color: #1d4ed8;
        }

        .alert {
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .alert-success {
            background: #f0fdf4;
            border: 1px solid #86efac;
            color: #15803d;
        }

        .alert-error {
            background: #fef2f2;
            border: 1px solid #fca5a5;
            color: #dc2626;
        }

        .alert-info {
            background: #eff6ff;
            border: 1px solid #93c5fd;
            color: #2563eb;
        }

        .form-error {
            color: #dc2626;
            font-size: 14px;
            margin-top: 4px;
        }

        .home-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
            margin: 0;
            padding: 8px;
            line-height: 1;
            transition: color 0.2s ease;
            cursor: pointer;
            user-select: none;
            position: relative;
            z-index: 10;
        }

        .home-link:hover {
            color: #1d4ed8;
        }

        .home-link svg {
            pointer-events: none;
        }

        .success-message {
            text-align: center;
            padding: 32px;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            color: #10b981;
            margin: 0 auto 16px auto;
            display: none; /* Remove the green checkmark */
        }

        .success-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #111827;
            margin-bottom: 8px;
            margin-top: 48px; /* Add more space above the title */
        }

        .success-description {
            color: #6b7280;
            margin-bottom: 24px;
        }

        .back-to-login {
            background: #2563eb;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }

        .back-to-login:hover {
            background: #1d4ed8;
        }

        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 767px) {
            body {
                margin: 0;
                padding: 0;
            }
            
            .auth-container {
                padding: 0 16px;
                margin: 0;
                width: 100vw;
            }
            
            .auth-grid {
                max-width: 360px;
                width: 100%;
                margin: 0 auto;
                padding: 0;
            }
            
            .auth-card {
                max-width: 360px;
                width: 100%;
                margin: 0 auto;
                padding: 20px;
            }
            
            .logo-section {
                margin-top: 0px;
            }
            
            .logo {
                height: 200px;
                margin-bottom: -60px;
                margin-top: -40px;
            }
        }