/* Reset */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,dfn,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,body{
height: 100%;
width: 100%;
overflow: hidden;
margin:0;
padding:0;
font-family: Helvetica, Arial, sans-serif;
background: url('../images/background.png') no-repeat ,#000;
background-size: cover;
}


#wrapper{
max-width: 100%;
width: 940px;
margin: 0 auto;
}

.main{
max-width: 100%;
width: 940px;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

.header, .content, .bottom, .sep2{
width: 100%;
float: left;
}


h1{
color: #fff;
text-align: center;
margin: 0 0 10px 0;
}


h1 strong{
font-size: 120px;
font-weight: 700;
}

h2{
	text-align: center;
	font-weight: 100;
	font-size: 16px;
		color: #999;
	margin: 0 0 40px 0;

}

h2 strong{
	font-weight: 100;
	font-style: italic;
}


.information{
width: 480px;
margin: 0 auto;
}

h3{
font-size: 28px;
font-weight: 600;
color: #ffffff;
}

.information p{
font-size: 16px;
color: #ffffff;
display: block;
}

.form{
	float: left;
	width: 478px;
	height: 56px;
	margin-top: 20px;
	position: relative;
}

.field{
height: 100%;
outline: none;
background: #252525;
width: 448px;
border: none;
font-size: 14px;
color: #ffffff;
float: left;
padding: 20px 24px ;
}

@media only screen and (max-device-width: 420px)  {
	.information{
		width: 100%;
	}
	.form{
		width: 100%;
	}

	.field {
		width: 90%;
		padding-left: 5%;
		padding-right: 5%;
	}
}

.submit{
height: 100%;
width: 120px;
position: absolute;
top: 0;
right: 0;
background: #FFF600;
border: none;
font-size: 11px;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 0.1em;
cursor: pointer;
}


.submit:hover{
background: #FFF839;
}

