
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    margin: 0;
    padding: 0 14px;
    vertical-align: middle;
    background: #f8fafd;
    border: 1px solid #e2e8f0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    font-style: normal;
    border-radius: 6px;
    box-shadow: none;
    transition: all .3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: 0;
    border: 1px solid #0b5ba8;
    box-shadow: 0 0 0 3px rgba(11,91,168,.1);
    background: #fff;
}

input::placeholder, textarea::placeholder { color: #aab; }


button.btn {
    height: auto;
    margin: 0;
    padding: 12px 30px;
    vertical-align: middle;
    background: #0b5ba8;
    border: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    box-shadow: none;
    transition: all .3s;
    cursor: pointer;
}

button.btn:hover {
    background: #094a8c;
    border: 0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11,91,168,.3);
}

button.btn:active {
    outline: 0;
    background: #094a8c;
    border: 0;
    color: #fff;
    transform: translateY(0);
    box-shadow: none;
}

button.btn:focus {
    outline: 0;
    background: #094a8c;
    border: 0;
    color: #fff;
}

.btn:active:focus, .btn.active:focus {
    outline: 0;
    background: #094a8c;
    border: 0;
    color: #fff;
}
