@charset "utf-8";
/* CSS Document */


div#envelope{
width:100%;
}
form{
width:90%;
}
/* Makes responsive fields. Sets size and field alignment. */
input[type=text]{
margin-bottom:20px;
margin-top:10px;
width:100%;
padding:15px;
}
input[type=submit]{
margin-bottom:20px;
width:100%;
padding:15px;
}
textarea{
width:100%;
padding:15px;
margin-top:10px;
margin-bottom:20px;
resize:none
}
input[type=text]:focus,textarea:focus{
-webkit-box-shadow: 0px 0px 19px 1px rgba(54,54,54,0.58);
-moz-box-shadow: 0px 0px 19px 1px rgba(54,54,54,0.58);
box-shadow: 0px 0px 19px 1px rgba(54,54,54,0.58);
}


@media screen and (max-device-width: 600px){
div#envelope{
width:100%;
}
form{
width:90%;
}
/* Makes responsive fields.Sets size and field alignment. */
input[type=text]{
margin-bottom:20px;
margin-top:10px;
width:100%;
padding:15px;
}
input[type=submit]{
margin-bottom:20px;
width:100%;
padding:15px;
}
textarea{
width:100%;
padding:15px;
margin-top:10px;
margin-bottom:20px;
resize:none
}
input[type=text]:focus,textarea:focus{

}
}