html {
	height: 100%;
}

body {
	margin: unset;
	height: 100%;
}

.login__background{
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: #000c4e;
}

.login__background a{
	color: white;
	font-size: 24px;
	padding: 20px;
	top: 20px;
	position: relative;
	text-decoration: none;
}

.login-form{
	width: 300px;
	padding: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	border: 1px solid white;
	border-radius: 10px;
}

.login-form p{
	display: flex;
	flex-direction: column;
	font-size: 20px;
}
.login-form input{
	background-color:white;
	padding: 10px;
	border: 1px solid white;
	border-radius: 5px;
	font-size: 20px;
}