/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 05 2025 | 22:16:39 */
/* 🎯 Target only form with ID fluentform_3 */
#fluentform_3 {
    font-family: 'Poppins', 'Roboto', sans-serif; /* modern clean font */
    background: #ffffff; /* clean background */
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* subtle elevation */
}

/* 📌 Labels inside this specific form */
#fluentform_3 .ff-el-input--label label {
    font-size: 14px;
    font-weight: 600;
    color: #333; /* darker for contrast */
    margin-bottom: 6px;
    display: inline-block;
}

/* 📌 Inputs, selects, textareas */
#fluentform_3 .ff-el-form-control {
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    height: auto;
    border-radius: 8px; /* modern rounded corners */
    margin-bottom: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Highlight input focus */
#fluentform_3 .ff-el-form-control:focus {
    border-color: #1e6fb8;
    box-shadow: 0 0 0 3px rgba(30, 111, 184, 0.15);
    outline: none;
}

/* 📌 Wrapper spacing */
#fluentform_3 .ff-el-wrapper {
    margin-bottom: 16px;
}

/* 📌 Checkboxes / radios */
#fluentform_3 .ff-el-checkbox, 
#fluentform_3 .ff-el-radio {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* 📌 Submit button - strong CTA */
#fluentform_3 button.ff-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    background: #0D2A55 !important; /* bold gradient */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(30,111,184,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

/* Hover / Active effect */
#fluentform_3 button.ff-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30,111,184,0.35);
	background-color: #FFDA2B !important;
	color: #000 !important;
}

#fluentform_3 button.ff-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(30,111,184,0.2);
}
