/* Contact form (institutional pages: /contato, /anunciar, /publicar) */

#lcf-contactform .lcf_contactform_error,
#lcf-contactform input.error,
#lcf-contactform textarea.error {
    border: 1px solid #D8000C;
}

#lcf-contactform label.error,
p.lcf-error {
    display: block;
    color: #D8000C;
    background: #ffd2d2;
    padding: 0 10px;
    height: auto;
    width: auto;
}

.lcf-success-msg,
.lcf-status.lcf-success-msg {
    color: #4F8A10;
    background-color: #DFF2BF;
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
}

.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}

#lcf-contactform-wrap {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 19px 20px 0 20px;
    max-width: 720px;
    margin: 0 auto 25px;
}

#lcf-contactform {
    width: 100%;
    max-width: 450px;
    flex: 1 1 280px;
}

#lcf_contactform_name,
input#lcf_contactform_email {
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 32px;
    border: none;
    box-sizing: border-box;
}

#lcf_contactform_name,
input#lcf_contactform_email,
#lcf_message {
    display: block;
    width: 100%;
    background: #e6e6e6;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    border: none;
    box-sizing: border-box;
}

textarea#lcf_message {
    min-height: 150px;
    border-radius: 25px;
    padding: 14px 30px;
    resize: vertical;
    font-family: inherit;
}

.lcf-submit {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 5px;
}

#lcf_contact {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--dica-action);
    font-size: 17px;
    line-height: 1.5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    transition: all .4s;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    border: none;
}

#lcf_contact:hover {
    background: var(--dica-action-hover);
}

.contact100-pic {
    flex: 0 0 auto;
    max-width: 220px;
}

.contact100-pic img {
    max-width: 100%;
    border: none;
    display: block;
}

@media screen and (max-width: 700px) {
    .contact100-pic {
        display: none;
    }

    #lcf-contactform-wrap {
        padding: 11px 0 0 0;
        max-width: 510px;
        margin: 0 auto 25px;
    }

    #lcf-contactform {
        width: 100%;
        max-width: none;
    }
}
