Arrow nudge
Arrow nudge: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-076 {
display: inline-flex;
align-items: center;
gap: 8px;
font: 600 14px/1 system-ui,sans-serif;
color: #fff;
background: #0f172a;
border: 0;
border-radius: 8px;
padding: 12px 18px 12px 22px;
cursor: pointer;
transition: background .15s
}
.btn-076 svg {
transition: transform .2s
}
.btn-076:hover {
background: #1e293b
}
.btn-076:hover svg {
transform: translateX(4px)
}
.btn-076:focus-visible {
outline: 2px solid #0f172a;
outline-offset: 3px
}
.btn-076:active {
background: #020617
}
HTML
<button class="btn-076">Next step <svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14M13 6l6 6-6 6"/></svg></button>Prompt
A dark #0f172a button with white 14px semibold text and a 16px inline SVG right-arrow on the right (8px gap), 8px radius, padding 12px top/bottom, 22px left, 18px right. On hover the background lightens to #1e293b and the arrow nudges 4px to the right (200ms). Active #020617. Focus outline 2px dark.