/* RESET */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* DEFAULT */
html {
	height: 100%;
}

body {
	margin: 0;
	background: #F5F5F5;
	font-family: 'Lato', sans-serif;
	letter-spacing: 0.8px;
	line-height: 24px;
	color: #222;
	min-height: 100%;
	position: relative;
	/*padding-bottom: 6rem;*/
}

#hero {
	background: url(../img/hero.jpg) no-repeat center center fixed; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
  	position: relative;
  	height: 100vh;
}

#signup-form {
  margin-top: 20%;
  margin-bottom: 20%;
  padding: 1.5rem;
  text-align: center;
  background: rgba(50,50,50,0.7);
  color: #F5F5F5;
  border: 2px solid #F5F5F5;
}

#signup-form h1
{
	font-size: 48px;
	line-height: 48px;
	margin-bottom: 1.5rem;	
}

#signup-form #description {
	margin: 1rem;
}

#signup-form form {
	margin: 1rem;
}

#signup-form input {
	width: 300px;
}

#mce-error-response,
#mce-success-response {
	margin: 1rem 0;
}

#signup-form #disclaimer {
	font-style: italic;
	font-size: 14px;
}

@media (max-width: 767px) {
	#signup-form h1
	{
		font-size: 36px;
		line-height: 36px;
	}

	#form > p:nth-child(1) {
		font-size: 13px;
	}

	#signup-form input {
		width: 100%;
	}
}

@media (max-width: 400px) {
	#signup-form h1
	{
		font-size: 26px;
		line-height: 26px;
	}

	#mce-error-response,
	#mce-success-response {
		font-size: 13px;
	}
}


/* iPhone 6 in landscape */
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) { 
	#signup-form {
  		margin: 2.5% 0;
  	}

  	#hero {
  		height: 125vh;
  	}
}