Buttons
Primary Button with Hover Lift
A solid accent-colored button that lifts and deepens its shadow on hover for a tactile, responsive feel.
<button class="btnlift-btn">Get Started</button>
.btnlift-btn {
font-family: system-ui, -apple-system, sans-serif;
background-color: #3b82f6;
color: #ffffff;
border: none;
padding: 12px 28px;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
box-shadow: 0 2px 6px rgba(59, 130, 246, 0.35);
transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btnlift-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 20px rgba(59, 130, 246, 0.35);
background-color: #2f6fe0;
}
.btnlift-btn:active {
transform: translateY(-1px);
box-shadow: 0 6px 12px rgba(59, 130, 246, 0.35);
}