Crimson wide
Crimson wide: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-004 {
display: block;
width: 100%;
font: 700 13px/1 system-ui,sans-serif;
letter-spacing: .08em;
text-transform: uppercase;
color: #fff;
background: #dc2626;
border: 0;
border-radius: 4px;
padding: 15px;
cursor: pointer;
transition: background .15s
}
.btn-004:hover {
background: #b91c1c
}
.btn-004:focus-visible {
outline: 2px solid #dc2626;
outline-offset: 3px
}
.btn-004:active {
background: #991b1b
}
HTML
<button class="btn-004">Delete account</button>Prompt
A full-width destructive button, background #dc2626, white uppercase 13px bold text with 0.08em letter spacing, 4px radius, 15px padding. Hover #b91c1c, active #991b1b. No shadow. Focus outline 2px red offset 3px.