Turn hero login link into a proper button matching hero-btn-secondary style

This commit is contained in:
Marty Bostick
2026-07-29 20:33:01 +00:00
parent 03fdbe87e6
commit 3cf5309b25
+15 -9
View File
@@ -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 {