.contact-form-container {
  display: flex;
  flex-direction: column;
  color: #000;
}
.in-form-title {
  padding: 10px;
}
.contact-form-fields-container {
  display: flex;
  justify-content: space-between;
}

.contact-form-col-1,
.contact-form-col-2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}

.in-form-label {
  padding-bottom: 5px;
}
.in-form-input {
  min-height: 25px;
  border: 2px solid #dfdfdf;
  border-radius: 2px;
  color: #000 !important;
}
.contact-form-message-container {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.in-form-textarea {
  border: 2px solid #dfdfdf;
  border-radius: 2px;
  width: auto;
  height: auto;
}
.contact-form-button-container {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: flex-end;
}

.in-form-button {
  background-color: #0b5dae;
  padding: 10px 50px;
  color: #fff;
  cursor: pointer;
}

.in-form-error {
  min-height: 20px;
  color: #cf1237;
  margin-bottom: 10px;
}

.in-form-success {
  min-height: 20px;
  color: #6dd621;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .contact-form-fields-container {
    flex-direction: column;
  }

  .contact-form-col-1,
  .contact-form-col-2 {
    padding: 5px 10px 5px 10px;
  }

  .contact-form-message-container {
    width: 100%;
  }
  .contact-form-button-container {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .in-form-button {
    width: 100%;
  }
}
