/* Start custom CSS for cvio-contacts-form, class: .elementor-element-228f962 *//* Faz cada grupo ocupar 100% da largura */
.contact_form label {
    display: block;
    width: 100%;
    margin-bottom: 20px; /* Espaço entre os campos */
    color: #fff; /* opcional se quiser manter o texto branco */
}

/* Faz o input/textarea ocupar toda a largura */
.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form input[type="email"],
.contact_form textarea,
.contact_form input[type="url"],
.contact_form input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    background: #111; /* cor do fundo */
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

/* Ajusta o textarea */
.contact_form textarea {
    height: 160px;
    resize: vertical;
}

/* Botão */
.contact_form input[type="submit"] {
    background: #fff;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact_form input[type="submit"]:hover {
    background: #ccc;
}/* End custom CSS */