.response-message {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  top: 100%;
}
.response-message p {
  width: 290px;
  margin: auto;
  margin-top: 1rem;
  color: #721c24;
  background-color: #f8d7da;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  line-height: 3rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 30%);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 30%);
  -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 30%);
  -ms-box-shadow: 0 4px 4px rgba(0, 0, 0, 30%);
}
.response-message-animation {
  transition: all 0.3s linear;
}

@media only screen and (max-width: 768px) {
  .response-message p {
    width: 70%;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 481px) {
  .response-message p {
    width: 90%;
    font-size: 0.9rem;
    line-height: 2.5rem;
  }
}
