* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: inherit;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
}

img {
	margin-bottom: 50px;
	width: 100%;
	max-width: 300px;
}

form {
	width: 100%;
	max-width: 300px;
}

input {
	font-family: sans-serif;
	font-size: 16px;
	padding: 10px 10px;
	display: block;
	margin-bottom: 20px;
	border: 0;
	background: #f0f0f0;
	width: 100%;
}

button {
	font-family: sans-serif;
	font-size: 16px;
	padding: 10px 10px;
	display: block;
	margin-bottom: 10px;
	border: 0;
	background: #686DFF;
	width: 100%;
	color: white;
	margin-top: 50px;
	cursor: pointer;
}