html, body {
	height: 100%;
}

body {
	background: #4d4d4d;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
}

form {
	background: white;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
	font-family: lato;
	color: #333;
	border-radius: 10px;
}

form header {
	padding: 0px 20px 30px;
}

form label {
	margin-left: 20%;
	margin-right: 20%;
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 5px;
	position: relative;
	font-weight: bold;
}

form label span {
	color: #FF3838;
	font-size: 1em;
	position: absolute;
}

form input {
	display: block;
	width: 60%;
	margin-left: 20%;
	margin-right: 20%;
	padding: 5px 10px;
	font-size: 1em;
	border-radius: 3px;
	outline: none;
	border: 1px solid #ccc;
}

form button {
	position: relative;
	margin-top: 30px;
	margin-bottom: 30px;
	left: 50%;
	transform: translate(-50%, 0);
	font-family: inherit;
	color: white;
	background: #c3661b;
	outline: none;
	border: none;
	padding: 5px 15px;
	font-size: 1.3em;
	font-weight: bold;
	border-radius: 3px;
	box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

/*
form button .close_button {
	position: absolute;
	top: -10px;
	right: -10px;
}
*/
form button:hover {
	background: #b26d32;
}

#header-text {
	margin-left: 20%;
	margin-right: 20%;
	font-weight: bolder;
}

.form-text {
	margin-left: 21%;
	margin-right: 21%;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}
