.email-message {
  width: 100%;
}

.success-message {
  background: #007fff;
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  animation-name: error-message;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  position: relative;
}

.fail-message {
  background: #ff4d54;
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  animation-name: error-message;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  position: relative;
}

@keyframes error-message {
  from {
    opacity: 0;
    top: -30px;
  }
  to {
    opacity: 1;
    top: 0px;
  }
}