From 3cf5309b25743b3252370bbd85e869260b6d3b53 Mon Sep 17 00:00:00 2001 From: Marty Bostick Date: Wed, 29 Jul 2026 20:33:01 +0000 Subject: [PATCH] Turn hero login link into a proper button matching hero-btn-secondary style --- index.html | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 3c6db84..aabf0bc 100644 --- a/index.html +++ b/index.html @@ -460,19 +460,25 @@ margin-bottom: 22px; } .hero-login-link { - display: inline-block; - font-size: 0.82rem; - color: var(--text-secondary); + display: inline-flex; + align-items: center; + gap: 8px; + padding: 12px 28px; + background: rgba(255,255,255,0.06); + color: var(--text); text-decoration: none; - padding: 6px 18px; - border: 1px solid var(--border); - border-radius: 20px; + font-size: 0.92rem; + font-weight: 600; + border: 1.5px solid rgba(255,255,255,0.2); + border-radius: var(--radius); + backdrop-filter: blur(4px); transition: all 0.2s; + cursor: pointer; } .hero-login-link:hover { - border-color: var(--accent); - color: var(--accent); - background: rgba(0,229,255,0.08); + background: rgba(255,255,255,0.12); + border-color: rgba(255,255,255,0.4); + transform: translateY(-2px); } .checkbox-group {