.login-message {
  display: flex;
  justify-content: center;
  position: fixed;
  top: -4em;
  left: 0;
  height: 4em;
  width: 100%;
  border-radius: 5px 5px;
  background-color: rgb(6, 185, 6);
  animation: A-showmessage 5s ease forwards;
}
@media (max-width: 1000px) {
  .login-message {
    width: 100%;
    left: 0;
  }
}
.login-message p {
  color: white;
  text-align: center;
  font-weight: 600;
}

@keyframes A-showmessage {
  0% {
    top: -4em;
  }
  25% {
    top: 0em;
  }
  90% {
    top: 0em;
  }
  100% {
    top: -4em;
  }
}/*# sourceMappingURL=login-message.css.map */