.notif {
  position: fixed;
  z-index: 9;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  animation-name: notif;
  animation-duration: 2s;
  top: 50px;
  width: 80%;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.sukses {
  background-color: #03c9a9;
}

.gagal {
  background-color: #cf000f;
}

@keyframes notif {
  from {
    top: -100px;
  }
  to {
    top: 50px;
  }
}
