/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}
/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}
