.splashContainer{
  display: flex;
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: 99;
  left: 0px;
  top: 0px;
  background-color: #f6f6f6;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top:0px;
  flex-direction: column;
  /*
  animation: fading 1s forwards;
  animation-delay: 2s;
  opacity: 1;
  filter: grayscale(100%);
  */
}
.splashContainer .splashContainerProgressContainer{
  display: block;
  width: 350px;
  height: 10px;
  background-color: transparent;
  border-radius: 5px;
  margin: 24px 0px;
  margin-top: -20px;
  overflow: hidden;
}
.splashContainer .mdl-textfield__input{
  box-shadow: none;
  background-color: transparent;
  color: black;
}
.splashContainer input:-internal-autofill-selected {
  background-color: transparent !important;
  background-image: none !important;
}
.splashContainer .mdl-textfield.mdl-js-textfield{
  margin-bottom:16px;
}

.splashContainer img{
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0px auto;
  display: block;
  -webkit-transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -ms-transition: all 0ms ease-in-out;
  -o-transition: all 0ms ease-in-out;
  transition: all 0ms ease-in-out;  
  
}
.progressBar{
  width:0%;
  height: 100%;
  background-color: #1cb253;
   -webkit-transition: all 800ms ease-in-out;
  -moz-transition: all 800ms ease-in-out;
  -ms-transition: all 800ms ease-in-out;
  -o-transition: all 800ms ease-in-out;
  transition: all 800ms ease-in-out;  
}
@keyframes showProgress{
    0% { 
      margin-top: -20px;
      background-color: #e7e7e8;}
    60% { 
      background-color: #e7e7e8;
    }
    100% { 
      margin-top: 24px;
      background-color: #d8d8d8;
    }
}
@keyframes full-logo{
    0% { max-width: 250px; }
    100% { max-width: 350px; }
}
@keyframes fading{
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fade-out{
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes to-login-form{
    0% {
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px;
      filter: grayscale(100%);
      background-color: #e7e7e8;
    }
    
    25% {
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px;
      background-color: #e7e7e8;
    }
    50%{
      filter: grayscale(100%);
    }
    90% {
      filter: grayscale(100%);
    }
    100% {
      width: 290px;
      height: 250px;
      left: calc(50% - 145px);
      top: 0px;
      opacity: 1;
      background-color: transparent;
      filter: grayscale(0%);
    }
    
}
#centerContainer{
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  /*
  width: 100%;
  max-width: 350px;
  */
  margin-top: -100px;
}
/*
.splashContainer.login-form{
  width: 290px;
  height: 80px;
  left: calc(50% - 145px);
  top: 170px;
}
*/
@keyframes fade-in-form {
  from {
    opacity:0;
  }
  to{
    opacity:1;
  }
}

@keyframes hide-in-form {
  from {
    opacity:1;
  }
  to{
    opacity:0;
  }
}


.login-form{
  margin: 0px auto;
  padding: 20px;
  opacity:0;
  animation: fade-in-form 1s forwards;
  animation-delay: 1s;
  background-color: transparent;
  box-shadow: none;
  margin-top: -124px;
}
#authenticateButton{
  margin: auto;
  background-color: #1cb253;
}