/* Centre the form within the page */
form {
    margin: auto;
    width: 96%;
}

/* Style the label */ 
label {
    display:block;
    margin-top:20px;
    letter-spacing:2px;
    font-size:1.7em;
}

/* Style the text boxes */
input, textarea {
	width: 100%;
	height: 20px;
	background: #efefef;
	border: 1px solid #dedede;
	padding: 5px 0;
	margin-top:3px;
	font-size:1.7em;
	color:#3a3a3a;
}

input:focus, textarea:focus {
    border:1px solid #97d6eb;
}

textarea {
	height:100px;
	background: url(../img/fon.jpg) repeat;
	background-position: 0px -200px;
	background-size: 100% auto;	
}

/* Style the button */
#submit {
    width:100%;
    height:38px;
    color: #fff;
    font-family:Georgia, "Times New Roman", Times, serif;
    background-color: rgba(255,92,51,1);
    letter-spacing: 1px;
    font-size: 1.7em;
    border: none;
    margin-top: 30px;
    margin-bottom: 50px;
    cursor: pointer;
}

#submit:hover {
	opacity: .7;
}

@media (max-width: 800px) {
	label, input, textarea,#submit {
		font-size: 1.2em;
	}
}
