Maintain consistent color for text question's bottom border
A text question has a bottom border that changes based on whether it is focused. To avoid the changing color and maintain a consistent color regardless of focus, you can use this CSS.
input[id^="field-text"] {
border-bottom: 1px solid #50B472 !important;
}
Modify the line width, line style, and color as desired.