/* FORMULARIOS WP FORMS */
input[type=text],
input[type=range],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=password],
input[type=file],
textarea{
    background: none !important;
    border-left: unset !important;
    border-right: unset !important;
    border-top: unset !important;
}

input[type=text]:focus,
input[type=range]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=file]:focus,
textarea:focus{
    border-left: unset !important;
    border-right: unset !important;
    border-top: unset !important;
	box-shadow: none !important;
	border-color: var(--accent-2-b) !important;
	border-radius: 0 !important;
}
.wpforms-container .wpforms-form .wpforms-field-label {
	font-weight: 400;
    font-size: 18px;
}
input.wpforms-error{
	border-radius: 0 !important;
}
input.wpforms-error:hover{
	border-left: unset !important;
    border-right: unset !important;
    border-top: unset !important;
	box-shadow: none !important;
}
button[type=submit]{
	background: var(--accent) !important;
    padding: 25px 30px !important;
    border-radius: 10px !important;
    text-transform: uppercase;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
    line-height: 0 !important;
}
div.wpforms-container-full button[type=submit]:hover{
	background: var(--accent) !important;
	color: var(--base-a);
}