Motion Notes
Motion Notes
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #2b0000, #660000);
}
.container {
background: rgba(255, 255, 255, 0.05);
padding: 40px;
border-radius: 15px;
box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
backdrop-filter: blur(10px);
width: 90%;
max-width: 400px;
}
h2 {
text-align: center;
color: #fff;
margin-bottom: 30px;
}
input {
width: 100%;
padding: 12px;
margin-bottom: 20px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 10px;
color: white;
outline: none;
transition: 0.3s;
}
input:focus {
border-color: red;
background: rgba(255, 0, 0, 0.1);
}
button {
width: 100%;
padding: 12px;
background: red;
color: white;
font-weight: bold;
border: none;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 0 15px red;
transition: 0.3s;
}
button:hover {
background: #ff1c1c;
box-shadow: 0 0 25px red, 0 0 50px red;
}
<div class="container">
<h2>Login</h2>
<input type="text" placeholder="Username" />
<input type="password" placeholder="Password" />
<button>Login</button>
</div>
</body>
</html>