/*
 * iOS Safari automatically zooms the viewport when a text-entry control has
 * a rendered font size below 16px. Apply the safe minimum only on phones;
 * controls that do not accept typed text are deliberately excluded.
 */
@media (max-width: 47.99rem) {
	body input:not([type='button']):not([type='submit']):not([type='reset']):not([type='image']):not([type='checkbox']):not([type='radio']):not([type='range']):not([type='color']):not([type='file']):not([type='hidden']),
	body textarea,
	body select {
		font-size: 16px !important;
	}
}
