.valid,
.checked {
  color: black;
}
.invalid {
  color: #840303;
}
.validation-message {
  font-size: 0.8rem;
  color: black;
  padding-bottom: 0.8rem;
}
.invalid-message {
  font-size: 0.8rem;
  color: #840303;
  padding-bottom: 0.8rem;
}
.message-sent {
  text-align: center;
  font-size: 1.2rem;
}
.contact-section {
  background-color: white;
  padding: 1.5rem;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.contact-section form,
.message,
.info {
  display: flex;
  flex-direction: column;
  border: none;
  gap: 0.5rem;
}
.contact-section form {
  padding: 2rem;
  background-color: #faf8f7;
  border-radius: 15px;
  box-shadow: 4px 5px 5px 0px rgba(21, 48, 63, 0.1);
  gap: 1rem;
}
.info input,
.message input,
.contact-section textarea {
  border: none;
  background-color: white;
  padding: 0.6rem;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: black;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}
.message label,
.info label {
  display: none;
}

.contact-section legend {
  text-align: center;
  padding-bottom: 3rem;
  font-size: 1.2rem;
}
#subject,
#subject::placeholder {
  font-weight: 500;
  font-size: 1rem;
}
#message::placeholder {
  font-weight: 200;
}
#message {
  min-height: 10vh;
}
.terms {
  font-size: 0.8rem;
  color: #840303;
  display: flex;
  flex-direction: row;
  border: none;
  gap: 1rem;
}
.send-CTA {
  font-weight: 200;
  font-size: 1.1rem;
  border: none;
  border-radius: 20px;
  padding: 0.5rem;
  cursor: pointer;
}
.send-CTA {
  background-color: #840303;
  color: rgb(255, 255, 255);
  border: none;
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  .send-CTA {
    padding: 0.8rem;
  }
  .contact-section {
    padding: 3rem 3rem 5rem 3rem;
  }
  .contact-section form {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-section legend {
    padding: 2rem 3rem 3rem 3rem;
  }
}
