/* Non-critical form control enhancements moved out of critical path */
input, select, textarea { color:#111827 !important; background:#fff !important; font-weight:500 !important; border:1px solid #000 !important; border-radius:0.5rem !important; }
input::placeholder, textarea::placeholder { color:#6b7280 !important; font-weight:500 !important; opacity:1 !important; }
input:focus, select:focus, textarea:focus { color:#111827 !important; background:#fff !important; border-color:#3b82f6 !important; outline:none !important; box-shadow:0 0 0 3px rgba(59,130,246,.2) !important; }

/* File input */
input[type="file"]{ display:block; width:100%; max-width:100%; font-size:.875rem; color:#4b5563; background:#fff; border:1px solid #e5e7eb; border-radius:.5rem; padding:.5rem; cursor:pointer; transition:border-color .2s, box-shadow .2s, background-color .2s; }
input[type="file"]:hover{ background:#fafafa; }
input[type="file"]:focus{ outline:none; border-color:#3b82f6; box-shadow:0 0 0 3px rgba(59,130,246,.2);} 
input[type="file"]::file-selector-button{ margin-right:.75rem; padding:.5rem .875rem; border:1px solid #fb923c; border-radius:.5rem; background:linear-gradient(135deg,#f97316,#ea580c); color:#fff; font-weight:600; cursor:pointer; transition:background-color .2s, border-color .2s, transform .1s, box-shadow .2s; }
input[type="file"]::file-selector-button:hover{ background:linear-gradient(135deg,#ea580c,#c2410c); border-color:#f59e0b; }
input[type="file"]::file-selector-button:active{ transform:translateY(1px);} 
input[type="file"]::file-selector-button:focus-visible{ outline:none; box-shadow:0 0 0 3px rgba(249,115,22,.2);} 
input[type="file"]::-webkit-file-upload-button{ margin-right:.75rem; padding:.5rem .875rem; border:1px solid #fb923c; border-radius:.5rem; background:linear-gradient(135deg,#f97316,#ea580c); color:#fff; font-weight:600; cursor:pointer; transition:background-color .2s, border-color .2s, transform .1s, box-shadow .2s; }
input[type="file"]:hover::-webkit-file-upload-button{ background:linear-gradient(135deg,#ea580c,#c2410c); border-color:#f59e0b; }

/* Select */
select{ color:#111827 !important; background:#fff !important; -webkit-appearance:none !important; -moz-appearance:none !important; appearance:none !important; background-image:none !important; background-clip:padding-box !important; }
select option{ color:#111827 !important; background:#fff !important; padding:8px 12px !important; font-size:14px !important; font-weight:500 !important; }
select option:hover{ background:#fef3c7 !important; }
select option:checked{ background:#fed7aa !important; color:#ea580c !important; }
select::-ms-expand{ display:none; }
select:focus{ outline:none !important; border-color:#3b82f6 !important; box-shadow:0 0 0 3px rgba(59,130,246,.2) !important; }
select{ background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important; background-position:right .5rem center !important; background-repeat:no-repeat !important; background-size:1.5em 1.5em !important; padding-right:2.5rem !important; }
