/* All look-and-feel (cards, inputs, buttons) is controlled globally
   in static/css/glass_theme.css. */


body, html {
    overflow-x: hidden;
    overflow-y: hidden;
}


/* Remove body padding added via JS on this page */
body.glass-theme {   
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


/* Center the login card on the screen */
.glass-theme .center-container {
  min-height: 100dvh;            /* fill the viewport height */
  display: grid;                 /* vertical + horizontal centering */
  place-items: center;           /* center the card */
  padding-top: 0 !important;     /* override global padding */
  padding-bottom: 0 !important;  /* override global padding */
}
.center-container .card { width: 100%; }



@media (min-width: 767px) {
body, html {
overflow-x: hidden;
overflow-y: auto;
}
}
