input[type="text"], input[type="tel"], input[type="password"], input[type="email"], textarea {
margin: 4px 0;
padding: 0 7px;
vertical-align: middle;
background: #fff;
border: 1px solid #333;
font-family: 'Roboto', sans-serif;
font-size: 17px;
font-weight: 300;
line-height: 36px;
color: #333;
border-radius: 6px;
box-shadow: none;
transition: all .3s;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
outline: 0;
border: 1px solid #be5254;
box-shadow: none;
}

select {
margin: 4px 0;
padding: 0 7px;
font: 300 18px 'Roboto', sans-serif;
line-height: 36px;
color: #333;
border: 1px solid #333;
border-radius: 4px;
box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset;
background: #f8f8f8;
outline: 0;
display: inline-block;
appearance: none;
cursor: pointer;
}

.btnStyle {
text-align: center;
font-size: 14px;
font-weight: bold;
text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
padding: 10px 30px;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
color: #FFF;
text-decoration: none;
border-radius: 4px;
display: inline-block;
cursor: pointer;
border: 1px solid #000;
background-color: #222;
}

.btnStyle:hover {
background-color: #333;
}
.btnStyle:active {
background-color: #222;
transform: translate(1px, 1px);
/*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);*/
}