🌐 Glassmorphism Glow Button
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glassmorphism Glow Button</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
font-family: 'Poppins', sans-serif;
}
.glass-button {
padding: 15px 50px;
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 30px;
backdrop-filter: blur(10px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 5px 10px rgba(255, 255, 255, 0.1);
cursor: pointer;
transition: all 0.3s ease;
}
.glass-button:hover {
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(255, 255, 255, 0.3);
transform: scale(1.1);
}
.glass-button:active {
transform: scale(0.95);
}
</style>
</head>
<body>
<button class="glass-button">Glass Glow</button>
</body>
</html>