<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Вход в магазин</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-box {
background: white;
padding: 25px;
width: 300px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h2 {
margin-bottom: 15px;
font-size: 20px;
text-align: center;
}
input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 6px;
}
button {
width: 100%;
padding: 10px;
background: #2d6cdf;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background: #1f57b8;
}
</style>
</head>
<body>
<div class="login-box">
<h2>Вход</h2>
<form>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Пароль" required>
<button type="submit">Войти</button>
</form>
</div>
</body>
</html>