body {
	display: flex;
	justify-content: center;
	align-content: center;
	
	background-image: url('../images/background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.container {
	margin: auto;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.75);
	max-width: 500px;
}

.title {
	margin-bottom: 5px;
	font-size: 4em;
	font-weight: 600;
	color: #fff;
}

.text {
	color: #fff;
	margin-bottom: 15px;
}

.language {
	margin-bottom: 15px;
}

.error {
	background-color: rgba(255, 0, 0, 0.5);
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 15px;
}

.login_form {
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: 150px auto;
	grid-gap: 10px;
}

label {
	display: inline-block;
	color: #ccc;
	font-weight: 600;
	text-align: right;
}

.info {
	font-size: 0.75em;
	color: #ccc;
}