* {
	box-sizing: border-box;
}
body {
	font-family: poppins;
	font-size: 14px;
	color: #fff;
}
.form-box {
	background-color: rgba(0, 0, 0, 0.5);
	margin: auto auto;
	padding: 40px;
	border-radius: 5px;
	box-shadow: 0 0 10px #000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 380px;
	height: 400px;
}

.form-box:before {
	background-image: url("../images/construction-03.jpg");
	width: 100%;
	height: 100%;
	background-size: center center;
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	filter: blur(2px);
}
.form-box .header-text {
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 16px;
	text-align: center;
}
.form-box input {
	margin: 10px 0px;
	border: none;
	padding: 10px;
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
	font-family: poppins;
}
.form-box label {
	position: relative;
	margin-left: 5px;
	margin-right: 10px;
	top: 5px;
	display: inline-block;
	width: 18px;
	height: 16px;
	cursor: pointer;
}
.form-box label:before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 16px;
	border-radius: 5px;
	position: absolute;
	left: 0;
	bottom: 1px;
	background-color: #ddd;
}
span a {
	color: #BBB;
}