@import url(http://fonts.googleapis.com/css?family=Roboto+Slab);
/** {
    /* With these codes padding and border does not increase it's width and gives intuitive style.*/
  
	/*-webkit-box-sizing: border-box;   
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin:0;
	padding:0;
	font-family: 'Roboto Slab', serif;  
}*/
div#envelope{
	width: 55%;
	margin: 10px 30% 10px 25%;
	padding:10px 0;
	border: 1px solid #7ac9b7;
	border-radius:10px;
} 	
/*form{
	width:70%;
	margin:4% 15%;
}  
header{
	background-color: #4180C5;
	text-align: center;
	padding-top: 12px;
	padding-bottom: 8px;
	margin-top: -11px;
	margin-bottom: -8px;
	border-radius: 10px 10px 0 0;
	color: aliceblue;
} */

/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
	margin-bottom: 20px;
	margin-top: 10px;
	margin-left: 30px;
	margin-right: 30px;
	width:80%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #7ac9b7;
	font-size:15px;
}
input[type=submit]
{
	margin-bottom: 20px;
	width:80%;
	margin-left: 30px;
	margin-right: 30px;
	padding: 15px;
	border-radius:5px;
	border:1px solid #7ac9b7;
	background-color: #4180C5;
	color: aliceblue;
	font-size:15px;
	cursor:pointer;
}

input[type=email]{
	margin-bottom: 20px;
	margin-top: 10px;
	width:80%;
	margin-left: 30px;
	margin-right: 30px;
	padding: 15px;
	border-radius:5px;
	border:1px solid #7ac9b7;
	font-size:15px;
}
#submit:hover
{
 background-color: #13CC19;
}

select { 
 	width:80%;
	padding: 15px;
	margin-top: 10px;
	margin-left: 30px;
	margin-right: 30px;
    border:1px solid #7ac9b7;
	border-radius:5px; 
	margin-bottom: 20px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    color:#888;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
	font-size:15px;
}

textarea{
	width:80%;
	padding: 15px;
	margin-top: 10px;
	margin-left: 30px;
    border:1px solid #7ac9b7;
	border-radius:5px; 
	margin-bottom: 20px;
	resize:none;
	font-size:15px;
  } 
input[type=text]:focus,input[type=email]:focus,textarea:focus, select:focus {
	border-color: #4697e4;
}




  