.message-container {
  width: 100%;
}

.message-container--error {
  background-color: rgba(255, 0, 0, 0.5);
  color: white;
  border-radius: 5px;
  padding: 10px;
}

.message-container--info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
  border-radius: 5px;
  padding: 10px;
}

.message {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.inputs-container {
  display: flex;
  flex-direction: column;
}

.input--error {
  border: 1px solid red;
  box-shadow: 0px 0px 20px 0px rgba(255,0,0,0.2);
}

