@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	background: url(../images/section1_bg.jpg);
	background-attachment: fixed;
	background-size: cover;
}
#sideNav {
	text-align: left;
}
hr {
	 width: 70%;
	 border-top: 2px dashed #CCC;
	 text-align: center;
	 margin: 0 auto;
	 margin-bottom: 40px;
}
p {
	font-size: 1em;
}
@media screen and (max-width:960px) {
	body, #section1, #section2{
		background-image: none;
		background-color: transparent;
		-ms-filter: none;
		filter: none;
	}
	body::before {
		background: url(../../../../images/respon_bg1.jpg) repeat center center;
		background-size: cover;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		content: "\A";
		z-index: -2;
	}
	body::after {
		background-color: rgba(243, 99, 4, .7);
		background-size: cover;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		content: "\A";
		z-index: -1;
	}
}
form {
	margin: 20px auto;
	background-color: rgba(255, 255, 255, .9);
	width: 80%;
	text-align: center;
	padding: 40px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
}
form > h1 {
	color: #000;
	font-size: 2.125em;
	font-weight: bold;
	margin: 25px 0;
}
form > div {
	display: flex;
	flex-wrap: no-wrap;
	justify-content: center;
}
form > div p {
	width: 150px;
	margin: 0;
	line-height: 46px;
}
input {
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	display: block;
	width: 40%;
	padding: 10px;
	margin: 0;
	margin-bottom: 10px;
	border: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	outline: none;
}
input.check {
	width: auto;
	line-height:16px;
	height: 16px;
	margin-right: 10px;
	margin-top: 10px;
	background: none;
}
p.check {
	width: auto;
	line-height: 16px;
	margin-top: 10px;
}
@media screen and (max-width:960px) {
	form {
		width: 90%;
		padding: 15px;
	}
	form > div {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	form > div p {
		width: 100%;
		margin: 0;
		line-height: 20px;
	}
	input {
		width: 50%;
	}
}
@media screen and (max-width:600px) {
	input {
		width: 100%;
	}
}
input:focus {
	background: rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
::-webkit-input-placeholder {
	color: rgba(225, 225, 225, 0.4);
}
:-moz-placeholder {
	color: rgba(225, 225, 225, 0.4);
}
::-moz-placeholder {
	color: rgba(225, 225, 225, 0.4);
}
:-ms-input-placeholder {
	color: rgba(225, 225, 225, 0.4);
}
button {
	position: relative;
	display: block;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 30px;
	padding: 10px 30px;
	width: auto;
	border: none;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	background: #f90;
	color: #f4f4f4;
	box-shadow: 0px 3px 0px #ab4b47;
	cursor: pointer;
}
button:active {
	top: 3px;
	box-shadow: none;
}
