/* 1. Bold ONLY text field labels (exclude checkbox/radio options) */
.forminator-ui .forminator-label {
    font-weight: 700 !important;
}

/* 2. Do NOT bold bullet/checkbox/radio option labels */
.forminator-ui .forminator-checkbox-label,
.forminator-ui .forminator-radio-label,
.forminator-ui .forminator-option-label {
    font-weight: normal !important;
}

/* 3. Description text: italic + smaller font size */
.forminator-ui .forminator-description {
    font-style: italic !important;
    font-size: 0.85em !important; /* adjust as desired */
    line-height: 1.4;
}

/* 1. Make all Forminator field labels larger */
.forminator-ui .forminator-label {
    font-size: 1.25em !important; /* adjust as needed */
    font-weight: 700 !important;  /* keeps your bold styling */
}

/* 2. Make the input text larger for First Name, Last Name, Email */
.forminator-ui .forminator-input {
    font-size: 1.1em !important;
}

/* 3. Make the textarea text larger (Comment or Message) */
.forminator-ui .forminator-textarea {
    font-size: 1.1em !important;
}

/* 4. Keep descriptions italic and slightly smaller */
.forminator-ui .forminator-description {
    font-size: 0.85em !important;
    font-style: italic !important;
}
/* Enlarge the Submit button label */
.forminator-ui .forminator-button-submit {
    font-size: 1.2em !important;   /* adjust size as needed */
    font-weight: 600;              /* optional: make it slightly bolder */
    padding: 0.8em 1.4em;          /* optional: more comfortable spacing */
}
.forminator-ui .forminator-button-submit {
    border-radius: 6px !important;
}
.forminator-ui .forminator-button-submit {
    color: #fff !important;
    background-color: #333 !important;
}
.forminator-ui .forminator-button-submit:hover {
    background-color: #fff !important; /* Inverted background color */
    color: #333 !important; /* Inverted text color */
    border: 1px solid #333 !important; /* Optional: add border to match text color */
}