@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Lato", sans-serif;
	margin: 0;
	padding: 0;
	display: flex;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

body::after {
	content: "";
	background-image: url("../images/pattern.png"), linear-gradient(var(--gradient_top), var(--gradient_bottom));
	background-repeat: repeat;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.container {
	display: flex;
	width: 50%;
}

.content {
	flex-basis: 100%;
	text-align: center;
}

.smurf {
	position: relative;
	-webkit-animation: smurf_animation 1s normal ease;
	animation: smurf_animation 1s normal ease;
}

@-webkit-keyframes smurf_animation {
	0% {
		left: -2000px;
	}
	100% {
		left: 0px;
	}
}
@keyframes smurf_animation {
	0% {
		left: -2000px;
	}
	100% {
		left: 0px;
	}
}

.form input {
	width: 100%;
}

h1 {
	font-size: 35px;
	font-weight: 700;
	text-align: center;
	color: var(--dark_blue);
	padding: 25px 10px 25px 10px;
}

input:focus {
	outline: none;
}

form > input:first-of-type {
	border-bottom: 1px solid var(--dark_blue);
}

input {
	border: 0;
	padding: 10px 10px 10px 50px;
	background: var(--white);
	color: var(--dark_blue);
	font-size: 15px;
	margin: 0;
}

::-webkit-input-placeholder {
	color: var(--dark_blue);
}
::-moz-placeholder {
	color: var(--dark_blue);;
}
:-ms-input-placeholder {
	color: var(--dark_blue);
}
:-moz-placeholder {
	color: var(--dark_blue);
}

/*.valid {
	background-image: url("../images/check.svg");
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 20px 9px;
}*/

/*.invalid {
	background-image: url("../images/alert.svg");
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 20px 9px;
	color: #E98977;
}*/

.form_error {
	background: var(--red);
	color: var(--white);
	padding: 10px;
}

.login {
	background: var(--dark_blue);
	color: var(--white);
	border: 0;
	padding: 10px;
	font-size: 20px;
	cursor: pointer;
}

.forgot {
	padding: 10px;
	font-size: 13px;
}

.ie {
	background-color: var(--dark_blue);
	color: var(--white);
	padding: 10px;
	font-weight: 700;
	display: none;
}

.ie a {
	color: var(--white);
}

a {
	color: var(--dark_blue);
}

@media screen and (max-width: 1420px) {
	.container {
		width: 70%;
	}
}

@media screen and (max-width: 1020px) {
	.container {
		width: 90%;
	}
}