﻿html {
  height: 100%;
}

body {
    height: 100%;
}

form {
    height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

section {
  /* flex: 1; would be enough but it looks bad in IE */
  flex: 1 0 auto;
}


