🌐 Futuristic Border Glow
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Futuristic Border Glow</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #141e30, #243b55);
font-family: 'poppins', sans-serif;
}
.border-glow-button {
padding: 15px 50px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
color: #fff;
background: transparent;
border: 3px solid #00f2ff;
border-radius: 50px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}
.border-glow-button::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50px;
background: radial-gradient(circle, rgba(0, 242, 255, 0.2), transparent);
z-index: -1;
opacity: 0;
transition: opacity 0.4s ease;
}
.border-glow-button:hover::before {
opacity: 1;
}
.border-glow-button:hover {
box-shadow: 0 0 20px #00f2ff, 0 0 30px rgba(0, 242, 255, 0.7);
}
.border-glow-button:active {
transform: scale(0.95);
}
</style>
</head>
<body>
<button class="border-glow-button">Glow</button>
</body>
</html>