body {
	font-family: 'Barlow', sans-serif;
	margin: 0;
	background-color: rgb(20, 30, 40);
	text-align: center;
}

#header {
	width: 90%;
	font-size: 1rem;
	font-weight: 300;
	color: white;
	background: url(/images/backgrounds/logo-full.svg) center 6rem no-repeat;
	background-size: 15rem;
	padding-top: 13rem;
	padding-bottom: 2rem;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

h1 {
	font-size: 1.5rem;
	font-weight: 300;
}

#loginform {
	padding: 1.5rem;
	background-color: rgba(0, 0, 0, 0.10);
	font-size: 1.2rem;
	border: 1px solid white;
	color: white;
	width: 25rem;
	margin-bottom: 3rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 15px;

}

#loginform input[type="text"],
#loginform input[type="password"] {
	font-size: 1rem;
	border-style: none;
	padding: 0.5rem;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.80);
	border-radius: 10px;
	margin-top: 0.5rem;
}

#loginform button {
	font-size: 1.2rem;
	padding: 1rem;
	border-radius: 10px;
	cursor: pointer;
	border-style: solid;
	border-color: white;
	border-width: 1px;
	outline: none;
	background-color: rgb(0, 0, 0);
	color: whitesmoke;
}

#loginform button:hover {
	background-color: rgba(0, 0, 0, 0.1);
}


p {
	padding-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
}

footer {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: white;
	font-size: 0.75rem;
}

footer a {
	color: white;
}

@media screen and (max-width: 500px) {
	#loginform {
		width: 70%;
	}
	
	#header {
		background: url(/images/backgrounds/logo-full.svg) center 3rem no-repeat;
		background-size: 10rem;
		padding-bottom: 2rem;
		padding-top: 8rem;
	}
}