.login-input {
  width: 100%;
  height: 70px;
  font-size: 30px;
  text-align: center;
  font-weight: 900;
  border: gray 0px solid;
  border-radius: 10px;
  font-family: Neuropol;
  outline: 0;
}

@keyframes unicorn-animation {
  from {left: -400px; bottom: -400px;}
  to {left: 120vw; bottom: 120vh;}
}

.unicorn {
  width:350px;
  position: fixed;
  left: -400px;
  bottom: -400px;
  animation-name: unicorn-animation;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  
}
