Clear glass card button
Clear glass card button: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-035 {
font: 600 14px/1 system-ui,sans-serif;
color: #1f2937;
background: rgba(255,255,255,.55);
border: 1px solid rgba(255,255,255,.8);
border-radius: 10px;
padding: 12px 24px;
cursor: pointer;
-webkit-backdrop-filter: blur(14px);
backdrop-filter: blur(14px);
box-shadow: 0 4px 16px rgba(31,41,55,.12);
transition: background .2s,transform .2s,box-shadow .2s
}
.btn-035:hover {
background: rgba(255,255,255,.75);
transform: translateY(-1px);
box-shadow: 0 8px 22px rgba(31,41,55,.16)
}
.btn-035:focus-visible {
outline: 2px solid #1f2937;
outline-offset: 2px
}
.btn-035:active {
transform: none;
background: rgba(255,255,255,.9)
}
HTML
<div style="background:linear-gradient(135deg,#fde68a,#fca5a5,#c4b5fd);padding:28px"><button class="btn-035">View pricing</button></div>Prompt
A light frosted glass button on a pastel gradient: 55% white fill with 14px backdrop blur, 1px 80% white border, dark grey text #1f2937 at 14px semibold, 10px radius, 12px by 24px padding, soft 0 4px 16px shadow. Hover raises the fill to 75%, lifts 1px and deepens the shadow; active goes 90% white. Focus outline 2px #1f2937.