@keyframes slideInFromRight {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  50% {
    transform: translateX(-2%);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(10%);
    opacity: 0;
  }
  50% {
    transform: translateY(-5%);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.disclaimer > h3,
.disclaimer > p{
  text-align: center;
}
.disclaimer > p{
  font-size: 1.2em;
  font-weight: 300;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.733);
}
.warning{
  text-align: center;
  font-size: 18px;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.733);
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(233, 233, 40, 0.459);
  font-size: 1.1em;
}
input.user-message{
  width: 100%;
  height: 40px;
  opacity: 0.7;
  border-radius: 5px;
  padding: 5px 15px;
  border: 0;
}

textarea.user-message{
    width: 100%;
    opacity: 0.7;
    border-radius: 5px;
    padding: 5px 15px;
    border: 0;
  }

  select.user-message{
    width: 100%;
    height: 40px;
    opacity: 0.7;
    border-radius: 5px;
    padding: 5px 15px;
    border: 0;
  }

  .white{
      color: white;
  }

  .orange{
    color: #ffae19;
}

.message.Form {
  animation: 0.7s ease-out slideInFromRight 0.1s;
}
label,
.message > h6{
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.733);
}


.slideM{
  animation: 0.4s ease-out slideInFromBottom;
}


@media all and (max-width: 813px){
  .message {
    padding: 20px;
  }
  .disclaimer > p{
    font-size: 0.9em;
  }
}
