:root {
	--text-color: #444;
	--link-color: #EA3A61;
	--cell-backbround: rgba(255, 255, 255, .8);
}

body {
	height: 100vh;
	font: normal .9rem Verdana, Tahoma;
	color: var(--text-color);
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	background: transparent;
}

a {
	color: var(--link-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

footer {
	width: 100%;
	position: fixed;
	bottom: 0;
	height: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: aliceblue;
	z-index: 2;
}

/* login */
.login_wrap {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
}

.login_background {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	background-size: cover;
    background-attachment: fixed;
	opacity: .7;
	z-index: -1;
}

.login_content {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	padding-right: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	background-color: rgba(24, 26, 25, 0.295);
	z-index: 1;
}

.login_content .form {
	width: 400px;
	padding: 2rem;
	background-color: whitesmoke;
	border-radius: 4px;
}

.login_content .form label {
	display: inline-block;
	margin-bottom: .5rem;
}

.login_content .form input[type=password],
.login_content .form input[type=email],
.login_content .form input[type=submit] {
	width: 100%;
	padding: .8rem;
	margin-bottom: .8rem;
	border: 1px solid rgb(165, 165, 165);
	border-radius: 5px;
	outline: none;
	background: var(--cell-backbround);
}

.login_content .form input[type=password],
.login_content .form input[type=email] {
	color: var(--text-color);
	font-size: 100%;
}

.login_content .form input[type=submit] {
	border-color: #EA3A61;
	background-color: #EA3A61;
	color: #fff;
	cursor: pointer;
}

.login_content .form input[type=submit]:hover {
	background-color: transparent;
	color: #EA3A61;
}
/* end login */

.warning {
	margin-top: .2rem;
	padding: .2rem;
	font-size: 80%;
	color: rgb(197, 20, 20);
}

/* tablets and under */
@media (max-width: 768px) {

	.login_content {
		align-items: center;
		padding: 0;
	}

}