/*Bad Password Alert*/
.bad-password-message {
    position: fixed;
    transform: translateY(-200%);
    padding-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 300ms ease;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    line-height: 55px;
  }
  
  .good-password-message {
    position: fixed;
    transform: translateY(-200%);
    padding-bottom: 0px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    transition: all 300ms ease;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9999;
    line-height: 55px;
  }
  
  .is-on-homescreen .bad-password-message {
    padding-top: 30px !important;
  }
  .is-on-homescreen .good-password-message {
    padding-top: 30px !important;
  }
  
  .bad-password-message-active {
    transform: translateY(0%);
  }
  
  .good-password-message-active {
    transform: translateY(0%);
  }