/* 1. Target all standard input fields, dropdowns, and textareas */
body .fluentform .ff-el-form-control, 
body .fluentform input[type="text"], 
body .fluentform input[type="email"], 
body .fluentform input[type="number"], 
body .fluentform input[type="tel"],
body .fluentform select, 
body .fluentform textarea {
    border-radius: 5px !important;
    -webkit-border-radius: 5x !important; /* Support for older browsers */
    -moz-border-radius: 5px !important;
}

/* 2. Target the Submit Button specifically */
body .fluentform .ff-btn-submit {
    border-radius: 5px !important;
}

/* 3. Fix for 'Masked' inputs or special calculation fields */
body .fluentform .ff-el-form-control.ff_attribute_filled {
    border-radius: 5px !important;
}