

.message.success {
  padding: 8px 10px 8px 10px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 3px;

  background-color: #E8F5E9;
  border-color: #4CAF50;
  color: #43A047;

  -moz-animation: cssAnimation 0s ease-in 3s forwards;
  /* Firefox */
  -webkit-animation: cssAnimat ion 0s ease-in 3s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 3s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 3s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}


.message.error {
  padding: 8px 10px 8px 10px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 3px;

  background-color: #FBE9E7;
  border-color: #FF5722;
  color: #D84315;

  -moz-animation: cssAnimation 0s ease-in 3s forwards;
  /* Firefox */
  -webkit-animation: cssAnimat ion 0s ease-in 3s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 3s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 3s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}


@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        border: 0;
        background-color: transparent;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        border: 0;
        background-color: transparent;
        visibility:hidden;
    }
}
