Código·Botões›Glow
Botão Outline Glow
Botão outline com glow animado ao hover usando apenas CSS puro.
.btn-outline-glow {
display: inline-flex;
align-items: center;
padding: 0.625rem 1.5rem;
border-radius: 0.75rem;
border: 1px solid rgba(139, 92, 246, 0.4);
color: rgba(255,255,255,0.7);
background: transparent;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: all 0.25s ease;
}
.btn-outline-glow:hover {
border-color: rgba(139, 92, 246, 0.8);
color: #fff;
background: rgba(139, 92, 246, 0.08);
box-shadow:
0 0 12px rgba(139, 92, 246, 0.3),
inset 0 0 12px rgba(139, 92, 246, 0.05);
}