/*
Code Author: Mark-Anthony Karam
Host: mark-anthony.ca
*/

@import url(http://fonts.googleapis.com/css?family=Oswald);
@import url(http://fonts.googleapis.com/css?family=Muli:300);




/* Labels are titles for the text fields. You can use a placeholder instead if you like*/
label 
{
    display:block;
    margin-top:20px;
    letter-spacing:2px;
}

/* Centres the form within the page */
form 
{
    margin-left: 10%;
	margin-right: 7%;
	margin-bottom: 5%;
    width:350px;
	float:left;
}

/* Styles the text boxes */
input, textarea, file {
	width:350px;
	height:27px;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}

	input:focus, textarea:focus {
		border:1px solid #97d6eb;
	}

/* Styles the text area boxes (message field) */	
textarea 
{
	height:213px;
	background-color: #efefef;
}


/* Styles the submit button */
#submit {
	/* background:url(images/submit.png); */
	width:127px;
	height:48px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
}

/* Styles the submit hover */	
#submit:hover {
	color:#fff;
	background-color: #ffb400;
	opacity:0.9;
}

/* Mobile */
@media (max-width: 320px) {
	
form 
{
    margin-left: 10%;
	margin-right: 7%;
	margin-bottom: 0%;
    width:90%;
	float:left;
}
	
input, textarea, file {
	width:100%;
	height:15px;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}

	textarea 
{
	height:60px;
	background-color: #efefef;
}

}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
	form 
{
    margin-left: 0%;
	margin-right: 7%;
	margin-bottom: 5%;
    width:300px;
	float:left;
}
input, textarea, file {
	width:100%;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}	
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
form 
{
    margin-left: 0%;
	margin-right: 7%;
	margin-bottom: 5%;
    width:85%;
	float:left;
}
input, textarea, file {
	width:100%;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}	
}