auth login signin split-screen gradient social-login social-proof auth login signin split gradient social google github apple split-screen login page with gradient login form with social proof panel
Auth Split Gradient
Fetch pattern JSON:
curl https://webspire.de/patterns/auth/split-gradient.json split-gradient.html
<div class="ws-auth-split-gradient grid min-h-screen lg:grid-cols-2">
<!-- Left: Gradient feature panel -->
<div class="relative hidden flex-col justify-between overflow-hidden bg-gradient-to-br from-indigo-600 to-violet-700 p-12 text-white lg:flex">
<!-- Background decorative circles -->
<div class="absolute -top-24 -right-24 h-64 w-64 rounded-full bg-white/10"></div>
<div class="absolute -bottom-16 -left-16 h-48 w-48 rounded-full bg-white/10"></div>
<!-- Logo -->
<div class="relative flex items-center gap-3">
<div class="flex h-10 w-10 items-center justify-center rounded-xl bg-white/20">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<span class="text-lg font-bold">Webspire</span>
</div>
<!-- Tagline + features -->
<div class="relative">
<h2 class="text-4xl font-black leading-tight">Build faster.<br />Ship with confidence.</h2>
<p class="mt-4 text-lg text-white/80">Everything your team needs to design, prototype, and deploy production-ready UI.</p>
<ul class="mt-8 space-y-4">
<li class="flex items-center gap-3">
<div class="flex h-6 w-6 flex-shrink-0 items-center justify-center rounded-full bg-white/20">
<svg xmlns="http://www.w3.org/2000/svg" class="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="3">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
</svg>
</div>
<span class="text-white/90">500+ copy-paste UI patterns</span>
</li>
<li class="flex items-center gap-3">
<div class="flex h-6 w-6 flex-shrink-0 items-center justify-center rounded-full bg-white/20">
<svg xmlns="http://www.w3.org/2000/svg" class="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="3">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
</svg>
</div>
<span class="text-white/90">Tailwind v4 — no config required</span>
</li>
<li class="flex items-center gap-3">
<div class="flex h-6 w-6 flex-shrink-0 items-center justify-center rounded-full bg-white/20">
<svg xmlns="http://www.w3.org/2000/svg" class="h-3.5 w-3.5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="3">
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
</svg>
</div>
<span class="text-white/90">MCP integration for AI-assisted design</span>
</li>
</ul>
<!-- Social proof -->
<div class="mt-10 flex items-center gap-3">
<div class="flex -space-x-2">
<div class="h-9 w-9 rounded-full border-2 border-white bg-gradient-to-br from-pink-400 to-rose-500"></div>
<div class="h-9 w-9 rounded-full border-2 border-white bg-gradient-to-br from-amber-400 to-orange-500"></div>
<div class="h-9 w-9 rounded-full border-2 border-white bg-gradient-to-br from-emerald-400 to-teal-500"></div>
<div class="h-9 w-9 rounded-full border-2 border-white bg-gradient-to-br from-sky-400 to-blue-500"></div>
</div>
<p class="text-sm text-white/80"><span class="font-semibold text-white">10,000+</span> designers & developers</p>
</div>
</div>
</div>
<!-- Right: Login form -->
<div class="flex items-center justify-center bg-[var(--ws-color-bg)] px-8 py-16">
<div class="w-full max-w-sm">
<!-- Mobile logo -->
<div class="mb-8 flex items-center gap-2 lg:hidden">
<div class="flex h-9 w-9 items-center justify-center rounded-xl bg-indigo-600 text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<span class="text-lg font-bold text-[var(--ws-color-text)]">Webspire</span>
</div>
<h1 class="text-2xl font-bold text-[var(--ws-color-text)]">Welcome back</h1>
<p class="mt-2 text-sm text-[var(--ws-color-text-soft)]">Sign in to your account to continue.</p>
<form class="mt-8 space-y-5" novalidate>
<!-- Email -->
<div class="relative">
<input
id="sg-email"
type="email"
placeholder=" "
class="peer block w-full rounded-xl border border-[var(--ws-color-border)] bg-[var(--ws-color-surface)] px-4 pb-2.5 pt-5 text-sm text-[var(--ws-color-text)] focus:border-indigo-500 focus:outline-none focus:ring-2 focus:ring-indigo-500/20"
/>
<label for="sg-email" class="pointer-events-none absolute left-4 top-4 origin-top-left text-sm text-[var(--ws-color-text-soft)] transition-all duration-200 peer-focus:-translate-y-3 peer-focus:scale-75 peer-focus:text-indigo-600 peer-[:not(:placeholder-shown)]:-translate-y-3 peer-[:not(:placeholder-shown)]:scale-75">
Email address
</label>
</div>
<!-- Password -->
<div class="relative">
<input
id="sg-pw"
type="password"
placeholder=" "
class="peer block w-full rounded-xl border border-[var(--ws-color-border)] bg-[var(--ws-color-surface)] px-4 pb-2.5 pt-5 text-sm text-[var(--ws-color-text)] focus:border-indigo-500 focus:outline-none focus:ring-2 focus:ring-indigo-500/20"
/>
<label for="sg-pw" class="pointer-events-none absolute left-4 top-4 origin-top-left text-sm text-[var(--ws-color-text-soft)] transition-all duration-200 peer-focus:-translate-y-3 peer-focus:scale-75 peer-focus:text-indigo-600 peer-[:not(:placeholder-shown)]:-translate-y-3 peer-[:not(:placeholder-shown)]:scale-75">
Password
</label>
</div>
<div class="flex items-center justify-between">
<label class="flex items-center gap-2 text-sm text-[var(--ws-color-text-soft)]">
<input type="checkbox" class="rounded border-[var(--ws-color-border)] accent-indigo-600" />
Remember me
</label>
<a href="#" class="text-sm font-medium text-indigo-600 hover:underline">Forgot password?</a>
</div>
<button type="submit" class="w-full rounded-xl bg-indigo-600 px-6 py-3 text-sm font-semibold text-white transition hover:bg-indigo-700">
Sign in
</button>
</form>
<!-- Divider -->
<div class="relative my-6">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t border-[var(--ws-color-border)]"></div>
</div>
<div class="relative flex justify-center">
<span class="bg-[var(--ws-color-bg)] px-3 text-xs text-[var(--ws-color-text-soft)]">or continue with</span>
</div>
</div>
<!-- Social buttons -->
<div class="space-y-3">
<button type="button" class="flex w-full items-center justify-center gap-3 rounded-xl border border-[var(--ws-color-border)] bg-[var(--ws-color-surface)] px-4 py-2.5 text-sm font-medium text-[var(--ws-color-text)] transition hover:bg-[var(--ws-color-bg-secondary)]">
<svg class="h-5 w-5" viewBox="0 0 24 24" aria-hidden="true">
<path 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" fill="#4285F4"/>
<path 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" fill="#34A853"/>
<path 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.93l3.66-2.84z" fill="#FBBC05"/>
<path 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" fill="#EA4335"/>
</svg>
Continue with Google
</button>
<button type="button" class="flex w-full items-center justify-center gap-3 rounded-xl border border-[var(--ws-color-border)] bg-[var(--ws-color-surface)] px-4 py-2.5 text-sm font-medium text-[var(--ws-color-text)] transition hover:bg-[var(--ws-color-bg-secondary)]">
<svg class="h-5 w-5" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/>
</svg>
Continue with GitHub
</button>
<button type="button" class="flex w-full items-center justify-center gap-3 rounded-xl border border-[var(--ws-color-border)] bg-[var(--ws-color-surface)] px-4 py-2.5 text-sm font-medium text-[var(--ws-color-text)] transition hover:bg-[var(--ws-color-bg-secondary)]">
<svg class="h-5 w-5" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/>
</svg>
Continue with Apple
</button>
</div>
<p class="mt-8 text-center text-sm text-[var(--ws-color-text-soft)]">
Don't have an account?
<a href="#" class="font-medium text-indigo-600 hover:underline">Sign up free</a>
</p>
</div>
</div>
</div>
Details
Responsive Dark Mode Tailwind Only SSR Safe Copy & Paste
Stable Published
authloginsigninsplit-screengradientsocial-loginsocial-proof
Slots
| Name | Required | Description |
|---|---|---|
| brand-panel | Yes | Left gradient panel with logo, tagline, feature bullets, and avatar social proof. |
| login-form | Yes | Right panel with email/password form, social login buttons, and register link. |
Two-column login layout. The left panel (hidden on mobile) features a gradient background, tagline, three feature bullets with check icons, and a row of avatar social proof. The right panel contains floating-label email/password inputs, a remember-me checkbox, forgot-password link, a divider, and three social login buttons (Google, GitHub, Apple).