* {
	font-family: "Montserrat", sans-serif;
}

body {
	width: 100vw;
	height: 80vh;
	margin: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url(background.svg);
	background-repeat: repeat-x;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 5px 5px 2px 2px #EEEEEE;
}

img {
	height: 15rem;
	margin: 10px;
}

form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

input {
	margin: 10px; 
	width: 18rem;
	height: 3rem;
	border: white solid 2px;
	border-radius: 5px;
}

input[type=text] {
	font-size: 1.2rem;
	background-color: #ffffff;
	background-image: url(Name.png);
	background-size: 50%;
	background-repeat: no-repeat;
	padding: 5px 0px 0px 10px;
}

input[type=password] {
	font-size: 1.2rem;
	background-color: #ffffff;
	background-image: url(Passwort.png);
	background-size: 50%;
	background-repeat: no-repeat;
	padding: 5px 0px 0px 10px;
}

input[type=submit] {
	color: #ffffff;
	height: 2rem;
	font-size: 1rem;
	background-color: #FC0905;
	box-shadow: 3px 3px #BBB;
}

p {
	font-size: 1rem;
	text-decoration: underline;
	margin: 0px;
	color: white;
}