/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */

.wp-block-madeitforms-input-field.is-style-horizontal {
    display: flex;
}
.wp-block-madeitforms-input-field.is-style-horizontal > div {
    flex-basis: 50%;
}

div.wp-block-madeitforms-input-field {
    margin-bottom: 1rem;
}

.wp-block-madeitforms-input-field input.madeit-forms-input-field {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--wp--custom--border-radius--default, 0.25rem);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.wp-block-madeitforms-input-field input.madeit-forms-input-field:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}