h2, p, form, input {
    margin: 0;
    padding: 0;
}

.form-container {
    width: 100%;
}

.lead-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 27px;
    color: #987F69;
    font-weight: lighter;
    text-align: center;
    font-family: serif;
}

.form-subtitle {
    font-size: 19px;
    color: white;
    font-family: serif;
    margin: 20px 0;
}

.form-input {
    height: 36px;
    padding: 0 9px;
    border-radius: 3px;
    font-size: 16px;
    margin: 5px 0;
    border: none;
    outline: 1px solid #987F69;
    background: none;
    color: #987F69;
}

.form-submit {
    margin-top: 20px;
    height: 49px;
    background-color: #987F69;
    color: #2F343D;
    font-weight: bold;
    border: 0;
    outline: 0;
    font-size: 18px;
    font-family: serif;
}

.form-input.telefone {
    width: 100%;
}

.iti__selected-dial-code {
    color: #987F69;
    font-family: serif;
}

.form-submit:hover {
    background-color: #987F69;
    cursor: pointer;
}

@media screen and (max-width: 400px) {
    .form-title {
        font-size: 7vw;
    }
}