.form-area .field {
    display: flex;
    align-items: center;
    background-color: #eee;
    border-radius: 100px;
    height: 56px;
    padding: 0 20px;
    gap: 15px;
    margin-bottom: 15px
}

.form-area input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    outline: none
}

.form-area textarea {
    width: 100%;
    background-color: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    outline: none;
    resize: none
}

.form-area .btn-submit, .wpcf7-submit {
    width: 100%;
    height: 56px;
    border-radius: 100px;
    background-color: #50ae31;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    transition: .3s;
    margin-top: 10px
}

