/* Safe responsive layer for login/register pages. */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { min-width: 0; }
img, svg { max-width: 100%; height: auto; }
input, select, textarea, button { max-width: 100%; }
@supports (-webkit-touch-callout: none) {
  input:not([type="checkbox"]):not([type="radio"]), select, textarea { font-size: 16px; }
}
@media (max-width: 575.98px) {
  body { overflow-x: hidden; }
  form { max-width: 100%; }
  input, select, textarea, button { width: 100%; }
}
