@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: 100vw;
	height: 100vh;
}

.form {
	background: var(--white); 
	padding: 40px;
	min-width: 400px;
	margin: auto;
	border-radius: 5px;
}


h1 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark_blue);
	margin-bottom: 25px;
}

p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--dark_blue);
	margin-bottom: 25px;
}

input {
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	border: 0;
	border-bottom: 1px solid var(--dark_blue);
	padding: 5px;
	background: var(--white);
	color: var(--dark_blue);
	outline: none;
}

::-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);
}

.email {
	margin-bottom: 25px;
}

.ask {
	display: block;
	width: 100%;
	outline: none;
	border-radius: 5px;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 400;
	background: var(--dark_blue);
	color: var(--white);
	margin-top: 25px;
	border: 0px;
	cursor: pointer;
}