*{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}
body{
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	background: url('background.png');
	background-size: cover;
}
form{
	margin-top: 50px;
	text-align: center;
}
input{
	display: block;
	width: 350px;
	height: 40px;
	margin: 20px;
	border: none;
	outline: none;
	font-size: 20px;
	border-bottom: 1px solid black;
	background: transparent;
}
button{
	width: 350px;
	height: 40px;
	font-size: 20px;
	background-color: blue;
	border: none;
	color: white;
	margin-top: 20px;
}
form h1{
	margin-bottom: 30px;
}
::placeholder{
	color: black;
}
