Create beautiful, customizable buttons with hover effects, animations, and modern styling. Perfect for web applications and websites.
.btn {
background-color: #3b82f6;
color: #ffffff;
border-radius: 6px;
padding: 8px 16px;
font-size: 16px;
border: 2px solid #3b82f6;
cursor: pointer;
display: inline-block;
font-weight: 500;
line-height: 1.5;
text-align: center;
text-decoration: none;
vertical-align: middle;
user-select: none;
transition: all 0.15s ease-in-out;
}
.btn:disabled {
pointer-events: none;
opacity: 0.65;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}<button class="btn">Click Me</button>