@font-face {
    font-family: 'haymakerregular';
    src: url('font/haymaker-webfont.eot');
    src: url('font/haymaker-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/haymaker-webfont.woff') format('woff'),
         url('font/haymaker-webfont.ttf') format('truetype'),
         url('font/haymaker-webfont.svg#haymakerregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


body {
	font-family: 'haymakerregular', helvetica, arial;
	font-size: 16px;
	color: rgb(88,89,91);
	background: url(tree_bark.png) repeat;
}

#form {
	width: 400px;
	padding: 25px 5%;
	background: white;
	margin: auto;
	margin-top: 50px;
	-webkit-border-radius: 35px 35px 35px 35px;
	border-radius: 35px 35px 35px 35px;
	-webkit-box-shadow: 2px 2px 2px 5px #D1D1D1;
	box-shadow: 2px 2px 2px 5px #D1D1D1;
}

h1 {
	text-transform: uppercase;
	color: rgb(42,72,115);
	font-size: 25px;
	text-align: center;
	margin-bottom: 25px;
}

input {
	width: 200px;
	height: 25px;
	background: rgb(231,241,246);
	margin: 3px 0;
	border: 2px solid rgb(42,72,115);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

input.select {
	width: 20px;
}

#submitbutton {
	display: block;
}

label {
	display: block;
	margin-top: 10px;
}

.select {
	display: inline-block;
}

#message {
	width: 300px;
	height: 150px;
}

span {
	color:red;
	font-size: 12px;
	text-transform: uppercase;
}

input[type="radio"] {
	
}

textarea, select {
	width: 200px;
	background: rgb(231,241,246);
	margin: 8px 0;
	border: 2px solid rgb(42,72,115);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	font-size: 12px;
}

select {
	height: 55px;
}

#submitbutton {
	background: pink;
	width: 189px;
	height: 31px;
	border: none;
	margin: auto;
	margin-top: 15px;
	font-family: 'haymakerregular', helvetica, arial;
	font-size: 16px;
	color: white;
}

#tree {
	position: absolute;
	top: 150px;
	right: 20px;
	width: 300px;
	height:600px;
}

#tree img {
	width: 100%;
}





@media screen and (max-width:840px) {

	#form {
		margin: 50px 0 0 5%;
		float: left;
	}
}

@media screen and (max-width:690px) {

	#tree {
		display: none;
	}
}

@media screen and (max-width:480px) {

	body {
		font-size: 13px;
	}
	
	#form {
		width: 85%;
		margin: 15px 2%;
	}
	
	h1 {
		font-size: 20px;
	}
	
	input#firstname, input#lastname, input#email, input#phone {
		width:95%;
	}
	
	#message {
		width: 300px;
		height: 150px;
	}
	
	textarea, select {
		width: 95%;
	}
}







