.message {
  text-align: center;
  font-weight: bold;
  margin: 2px auto;
  padding: 10px 0;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .message {
    font-size: 14px;
  }
}
.message.hidden {
  display: none;
}
.message.success {
  color: #fff;
  background: #698ac1;
}
.message.error {
  color: #fff;
  background: orange;
}
