.message {
  border: 1px solid;
  padding: 1em;
  text-align: center;
}

.message--error {
  /* Carnelian */
  background-color: #C74B43;
  border-color: #81140D;
  color: #4A0C08;
}
.message--warning {
  /* American Yellow */
  background-color: #F2C533;
  border-color: #A78000;
  color: #604900;

  /* Tawny (Traffic Orange) */
  /* background-color: #E1753B;
  border-color: #993A07;
  color: #572104; */
}
.message--success {
  /* Spanish Green */
  background-color: #339D73;
  border-color: #005C38;
  color: #003520;
}

.validation-message {
  color: red;
  margin-top: 0;
  text-shadow: .02em .04em .1em rgba(255, 255, 255, .5);
}
.validation-message--warning {
  color: yellow;
  margin-top: 0;
  text-shadow: .02em .04em .1em rgba(255, 255, 255, .5);
}
.validation-message--success {
  color: green;
  margin-top: 0;
  text-shadow: .02em .04em .1em rgba(255, 255, 255, .5);
}
.validation-message:first-letter {
  text-transform: capitalize;
}
.not-valid {
  background-color: hsla(4, 54%, 52%, .75);
}
