html {
    height: 100%;
  }
  
  body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #3a3a3a;
  }

  #container{
    position:relative;
    width:100%;
    height:100%;
  }
  
  #main-holder {
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -70%);
    min-width: 300px;
    display: grid;
    justify-items: center;
    align-items: center;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0px 0px 5px 2px black;
    min-height: 310px;
    
  }
  #login-message{

  }  
  #login-error-msg {
    text-align: center;
    margin: 0;
    padding: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #8a0000;
    border: 1px solid #8a0000;
    background-color: #e58f8f;
  }
  #login-successful-msg{
    text-align: center;
    margin: 0;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    color: white;    
    border: 1px solid green;
    background-color: green;
  }
  div#loading{
    text-align:center;
    color:gray;
  }
  div#loading div:first-child{
     font-size:30px;
  }

  div#loading div:nth-child(2){
    padding-left:5px;
  }
  
  #error-msg-second-line {
    display: block;
  }
  
  #login-form {
    align-self: flex-start;
    display: grid;
    justify-items: center;
    align-items: center;
  }
  
  .login-form-field::placeholder {
    color: #3a3a3a;
  }
  
  .login-form-field {
    border: none;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 10px;
    border-radius: 3px;
    outline: none;
    padding: 0px 0px 5px 5px;
  }
  
  #login-form-submit {
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    background-color: #3a3a3a;
    outline: none;
  }
  .wait {
    cursor:wait;
  }
