@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}

/* Mobile Layout: 480px and below. */
* {
	box-sizing:border-box;
}
html {
	font-family: raleway, sans-serif;
	font-size: 16px;
	color: white;
}
body {
	background: #5D8BB6 url(../images/bg_downsizing-small.png) no-repeat center top fixed;
	background-size: contain;
	margin:0;
	padding:0;
}
h1 {
	
	font-family: "raleway", sans-serif;
	font-weight:100;
	font-size: 2.5rem;
	font-weight: 100;
	text-shadow: 0 0 5px rgba(0,51,102,0.75);
}
h3 {
	font-size:1.5rem;
}
.white {
	color: white !important;
}
p.white, label.white {
	text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.asterisk {
	font-weight: bold;
	color:#FC3;
}
.form-container {
	min-width: 280px;
	max-width:600px;
	width:100%;
	background: rgba(0,51,102,0.1);
	margin:0;
	padding: 0 0.8rem 0.4rem;
	line-height: 1.6rem;
	letter-spacing:1px;
	font-size: 0.85rem;
	text-align:left;
	text-shadow:0 0 5px rgba(0,51,102,0.35);
}
.indent {
	padding-left:2rem !important;
	padding-right:2rem !important;
	line-height:1.2rem !important;
}
.banner {
	width:100%;
	text-align:center;
}

button {
	background: #F93;
	color:white;
	text-shadow:0 0 5px rgba(0,51,102,0.35);
	font-size: 1.2rem;
	padding: 5px 30px;
	border: solid 1px #102030;
	border-radius:20px;
	color:blue;
}

/* Larger phones */
@media only screen and (min-width: 360px) {
body {
	background: #5D8BB6 url(../images/bg_downsizing-small.png) no-repeat center top fixed;
	background-size: contain;
	margin:0;
	padding:0;
}
h1 {
	font-size: 3rem;
	font-weight: 100;
	text-shadow: 0 0 5px rgba(0,51,102,0.5);
}
h3 {
	font-size:1.5rem;
}

.form-container {
	min-width: 280px;
	max-width:600px;
	width:100%;
	margin: 20px auto;
	padding: 0.5rem 2rem;
	line-height: 1.7rem;
	letter-spacing:1px;
	text-align:left;
	text-shadow:0 0 5px rgba(0,51,102,0.35);
}
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
body {
	background: #5D8BB6 url(../images/bg_downsizing-medium.png) no-repeat center top fixed;
	background-size: contain;
}
h1 {
	font-size: 4rem;
	font-weight: 100;
	text-shadow: 0 0 5px rgba(0,51,102,0.25);
}
h3 {
	font-size:1.5rem;
}
.form-container {
	min-width: 280px;
	max-width:600px;
	width:100%;
	background: rgba(0,51,102,0.5);
	margin: 50px auto;
	padding: 2rem;
	line-height: 1.8rem;
	letter-spacing:1px;
	text-align:left;
	text-shadow:0 0 5px rgba(0,51,102,0.35);
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
body {
	background: #5D8BB6 url(../images/bg_downsizing-large.png) no-repeat center top fixed;
	background-size: contain;
}
h1 {
	font-size: 6rem;
	font-weight: 100;
	text-shadow: 0 0 5px rgba(0,51,102,0.5);
	margin-top: 20px;
}
h3 {
	font-size:2rem;
}
.form-container {
	min-width: 280px;
	max-width:760px;
	width:100%;
	background: rgba(0,51,102,0.5);
	margin: 30px auto 0 auto;
	padding: 2rem;
	line-height: 1.8rem;
	letter-spacing:1px;
	text-align:left;
	text-shadow:0 0 5px rgba(0,51,102,0.35);
}
	button {
		margin-right:20px;
	}
}

