@import url(https://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: font-family:Calibri, serif;  
}
div#envelope{
	width: 100%;
	padding:10px 0;
	border: 2px solid #005aaa;
	border-radius:10px;
} 	
form{
	width:100%;
}  

/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
	margin-bottom: 10px;
	margin-top: 0px;
	width:100%;
	height:30px;
	padding: 15px;
	border-radius:5px;
	border:1px solid #005aaa;
}
input[type=submit]
{
	margin-bottom: 10px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #f48120;
	background-color: #f48120;
	color: aliceblue;
	font-size:15px;
	cursor:pointer;
}
#submit:hover
{
 background-color:#000;
}
textarea{
	width:100%;
	padding: 10px;
    border:1px solid #005aaa;
	border-radius:5px; 
	resize:none;
  } 
input[type=text]:focus,textarea:focus {
	border-color: #005aaa;
}

Select{
	border:1px solid #005aaa;
}
  