@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

form { max-width:500px; margin:50px auto; }

.form-input {
color:black;
font-family: Source Sans Pro;
font-weight:500;
font-size: 14px;
border-radius: 5px;
line-height: 22px;
background-color: transparent;
border:2px solid #0088cc;
transition: all 0.3s;
padding: 13px;
margin-bottom: 15px;
width:100%;
box-sizing: border-box;
outline:0;
}

.form-input:focus { border:2px solid #0088cc; }

textarea {
height: 150px;
line-height: 150%;
resize:vertical;
}

[type="submit"] {
font-family: Source Sans Pro;
width: 100%;
background:#0088cc;
border-radius:5px;
border:0;
cursor:pointer;
color:#FFFFFF;
font-size:14px;
padding-top:10px;
padding-bottom:10px;
transition: all 0.3s;
margin-top:-4px;
font-weight:700;
}
[type="submit"]:hover { background:#0088cc; }
