
div#envelope{
	width: auto;
	margin:0 auto;
	background-color:#;
	padding:20px 0;
	border:1px solid #;
	border-radius:10px;
	} 
	
form{
width: ;
margin:0 0%;
}  

form header {
  text-align:center;
  font-family: 'Roboto Slab', serif;
  }
 

/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
margin-bottom:5px;
margin-top: 0px;
  width:100%;
  padding:3px;
  border-radius:5px;
  border:1px solid #fb7e06;
}


input[type=submit]
{
margin-bottom:0px;
  width:100%;
  padding: 5px;
  border-radius:5px;
  border:1px solid #fb7e06;
  background-color:rgb(251, 126, 6);
}
textarea{
	width:100%;
	padding: 5px;
	margin-top: 5px;
    border:1px solid #fb7e06;
	border-radius:5px; 
	margin-bottom: 5px;
	resize:none;
  }
 
input[type=text]:focus,
textarea:focus {
  border-color: #fb7e06;
}

/* By using @ media form can have different layout for screen, mobile phone, tablet.*/

/* Sets the form layout for mobile phone, tablet*/
@media screen and (max-device-width: 600px){

@import url(http://fonts.googleapis.com/css?family=Droid+Sans);
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab);
* {
  
  /*with these codes padding and border does not increase it's width.Gives intuitive style.*/
  
  -webkit-box-sizing: border-box;   
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


div#envelope{
	width: auto;
	margin:0;
	background-color:#;
	padding:5px 0;
	} 
	
form{
width:100%;
margin:0;
}  

form header {
  text-align:center;
  font-family: 'Roboto Slab', serif;
  }
 

/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
margin-bottom: 0px;
margin-top: 5px;
  width:100%;
  padding: 5px;
  border-radius:5px;
  border:1px solid #fb7e06;
}


input[type=submit]
{
margin-bottom: 10px;
  width:100%;
  padding: 5px;
  border-radius:5px;
  border:1px solid #fb7e06;
  background-color:rgb(251, 126, 6);
}
textarea{
	width:100%;
	padding:5px;
	margin-top: 0px;
    border:1px solid #fb7e06;
	border-radius:5px; 
	margin-bottom: 5px;
	resize:none;
  }
 
input[type=text]:focus,
textarea:focus {
  border-color: #fb7e06;
}
}
  