/* ================ GRAVITY FORMS SIMPLE TWEAKS ================ */

/* 1. Labels: Bold & 16px */
.gform_wrapper .gfield_label {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    margin-bottom: 8px !important;
}

/* 2. Input Fields: 16px Text & Default Border */
.gform_wrapper input:not([type=submit]):not([type=button]):not([type=image]),
.gform_wrapper textarea,
.gform_wrapper select {
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    padding: 12px !important;
}

/* 3. Input Highlight (Focus State) */
.gform_wrapper input:not([type=submit]):not([type=button]):not([type=image]):focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: #5a3a6d !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #5a3a6d !important; 
}

/* 4. Submit Button: #5a3a6d & 16px Text */
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_button {
    background-color: #5a3a6d !important;
    color: #ffffff !important;
    border: 1px solid #5a3a6d !important;
    
    /* UPDATED: Font size set to 16px */
    font-size: 16px !important; 
    
    padding: 12px 24px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
    background-color: #452c53 !important;
    border-color: #452c53 !important;
}

/* 5. Spacing for '* indicates required fields' */
.gform_wrapper .gform_required_legend {
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    display: block !important;
}