html, body {
  background-color: white;
}
#content {
    display: none;
}
.contact-us-container {
    /* border-width: 1px;
  border-color: red;
  border-style: solid; */
  display: flex;
  flex-direction:column;
  flex-basis: 100%;
  background-color: #f1f1f1; /* light gray */
}
.contact-us-form {
  text-align: center;
  color: #363636; /* charcoal */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  padding: 24px 0;
  height: auto;
  text-align: center;
  h2, h3 {
    color: #363636; /* charcoal */
  }

  p {
    font-size: 0.8rem;
    color:#363636; /* charcoal */
    padding: 20;
    width:auto;
  }
}
.form-group {
  margin-bottom: 15px;
}
input {
  width: 15%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f1f1f1;
  box-sizing: border-box; 
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical 
}
input[id=question] {
  width: 30%;
}
input[id=email] {
  width: 20%;
}
input[type=submit] {
  width: 90px;
  background-color: #1F71BC; /* dark blue */
  color: white;
  border-radius: 5px;
  border: 1px solid white;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  font-weight: bolder;
}
input[type=submit]:hover {
  transition: background-color 0.3s ease;
  background-color: #363636; /* charcoal */
}
/* Style when button is disabled */
input[type=submit]:disabled {
  background-color: #ccc;
  color: white;
  cursor: not-allowed;
  opacity: 0.7;
}

@media only screen and (max-width: 680px) {
  .contact-us-form {
    width: 100%;
    margin: auto;
    padding: 10px;
    p {
      width:90%;
      /* color: red; */
    }
    h2, h3 {
      text-align: center;
      font-size: 1.2em;
    }
    input {
      font-size: 1em;
      width: 90%;
    }
  }
}