.btn-group button {
  
  display: block; /* Make the buttons appear below each other */
}

body {
      
        margin: 0;  
        font-family: Roboto, Arial, sans-serif;
        background: white;
        color: white;
      }

      a {
        color: rgb(3, 155, 229);
      }

      #message {
       position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
        border-radius: 2px;
        background: white;
        padding: 1px 1px;
      }

      

      body.inactive {
        overflow-x: hidden;
        overflow-y: hidden;
      }

      #auth_splash {
          color: black;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      .hide {
        visibility: hidden;
        display: none;
      }