Midnight CTA
Dark UI · .btn-midnight-cta
Text
Class name
Color hue
Radius · 12px
Size
.btn-midnight-cta {
display: inline-block;
padding: 14px 32px;
border: none;
border-radius: 12px;
background: linear-gradient(135deg, #0ea5e9, #6366f1);
color: #ffffff;
font-family: inherit;
font-size: 15px;
font-weight: 700;
cursor: pointer;
box-shadow: 0 8px 28px rgba(78, 118, 240, 0.45);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-midnight-cta:hover {
transform: translateY(-2px);
box-shadow: 0 12px 36px rgba(78, 118, 240, 0.6);
}
.btn-midnight-cta:active {
transform: translateY(0);
box-shadow: 0 4px 14px rgba(78, 118, 240, 0.45);
}