body,
html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

.login-background {
	background: url('../img/blue.jpg') no-repeat center center fixed;
	background-size: cover;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
}

.login-background img {
	position: absolute;
	height: 60vh;
}

form {
	display: flex;
	justify-content: space-between;
}

.input input {
	margin-right: 15px;
	padding: 10px;
	border: 1px solid #BEBEBE;
	border-radius: 3px;
	box-sizing: border-box;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	text-decoration: none;
}

.btn input {
	padding: 0 10px;
	border: 1px solid #BEBEBE;
	border-radius: 3px;
	box-sizing: border-box;
	height: 30px;
	cursor: pointer;
	background-color: #fff;
	color: #a7a7a7;
	width: 100px;
}

.btn .submit {
	background-color: transparent;
	color: #fff;
}

.btn .submit:hover {
	background-color: #fff;
	color: #242424;
}

.btn .register:hover {
	background-color: #f0f0f0;
}

.footer {
	text-align: center;
	color: #fff;
	margin-top: 10px;
	font-size: 12px;
}