.submit {
  width: 20%;
  border: solid 4px black;
  height: 50px;
  background-color: #000000;
  color: white;
  box-shadow: 0px 12px 4px rgba(0, 0, 0, 0.18), 0px 9px 4px rgba(0, 0, 0, 0.76);
  border-radius: 13px;
  font-weight: 600;
  margin: 0 auto;
  display: flex;
  align-self: center;
  text-align: center;
  justify-content: center;
}
.submit:hover {
  background-color: #1d1d1d;
  border: solid 4px #1d1d1d;
  cursor: pointer;
}

.error {
  color: white;
  background-color: red;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

.success {
  color: white;
  background-color: green;
  width: 40%;
  margin: 0 auto;
  text-align: center;
}

#contact {
  width: calc(100dvw - 8px);
  padding-bottom: 63px;
  border: solid 4px black;
  margin: 0;
  background-color: #FFDBCC;
}
#contact .message {
  margin: 0 auto;
}
#contact .message p {
  margin-top: 63px;
  font-weight: 600;
  text-align: center;
}
#contact form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 63px;
}
#contact .form {
  font-weight: 600;
  margin: 0 auto;
  justify-content: center;
  font-size: 16px;
}
#contact .form label {
  align-self: flex-start;
  text-align: left;
  margin: 0 auto;
}
#contact .form .input {
  background: #E6FFD9;
  height: 2em;
  margin-bottom: 1.6em;
  border: 4px solid #000000;
  box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.51);
  border-radius: 6px;
}
#contact .form textarea {
  background: #E6FFD9;
  margin-bottom: 1.6em;
  border: 4px solid #000000;
  box-shadow: 0px 10px 4px rgba(0, 0, 0, 0.51);
  border-radius: 6px;
  width: 50dvw;
}
#contact .form .message-form {
  vertical-align: top;
}
@media screen and (min-width: 520px) {
  #contact textarea {
    max-width: 50dvw;
  }
  #contact .input {
    width: 50dvw;
  }
}
@media screen and (min-width: 1024px) {
  #contact {
    width: calc(100% - 8px);
  }
  #contact form {
    max-width: 80%;
    width: 100%;
  }
  #contact form .form label {
    text-align: right;
    margin: 0 auto;
  }
  #contact form textarea {
    max-width: 60dvw;
    width: 60dvw;
  }
}/*# sourceMappingURL=contact.css.map */