/* INPUTS */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea,
select,
textarea.form-control {
    height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    border: 2px solid #d0d0d0;
    font-family: roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 50px;
    color: #888;
    border-radius: 4px;
    box-shadow: none;
    transition: all .3s;
}

textarea,
textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 30px;
}

/* FOCUS */
input:focus,
textarea:focus {
    outline: 0;
    background: #fcf8e3;
    border-color: #ddd;
    box-shadow: none;
}

/* PLACEHOLDER */
::placeholder {
    color: #888;
}

/* BOTÃO */
form button.btn {
    float: left;
    height: 50px;
    padding: 0 60px;
    background: #083054;
    border: 0;
    font-family: roboto, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #fff;
    border-radius: 4px;
    box-shadow: none;
    transition: all .3s;
}

form button.btn:hover,
form button.btn:focus,
form button.btn:active {
    opacity: .6;
    color: #fff;
}

.form .content {
    width: 100%;
    padding: 5px 25px 30px 15px;
    border-radius: 0 0 4px 4px;
}

.form .content form .group {
    margin-bottom: 25px;
}

.form .content form textarea {
    height: 100px;
}

/* ALERTS */
.form .content form .alert {
    display: none;
    text-align: center;
    background: #f2dede;
}

.form .content form .alert-danger {
    border-color: #ebccd1;
}

.form .content form .alert-success {
    border-color: #d6e9c6;
    background: #F2F2F2;
}

/* ANTISPAM */
.form .firstname,
.form .addressForm {
    display: none;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .form .content form .telefone {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .form .content form .qtd {
        width: 100%;
    }
}
