/* Sitewide Gravity Forms refinements (theme-deployable, no DB).
   The Bricks theme styles already give text inputs a clean look:
   white field, 2px solid #244F26 bottom border, no full box, radius 0.
   <select> (e.g. the address Country dropdown) and <textarea> fell
   outside that, so they looked inconsistent. Keep every form on the
   site consistent here, not per page. */

/* Country / any select: match the text inputs. Keep the theme's
   dropdown arrow (only background-color is set, not background). */
.gform_wrapper select,
.gform_wrapper .ginput_container select,
.gform_wrapper .ginput_container_address select {
	background-color: #fff !important;
	border: 0 !important;
	border-bottom: 2px solid #244f26 !important;
	border-radius: 0 !important;
}

/* Gravity Forms textareas render too short across the site.
   min-height only grows short ones; taller ones (large row counts)
   are left untouched. */
.gform_wrapper textarea,
.gform_wrapper textarea.textarea {
	min-height: 140px !important;
}
