.form-container {
    max-width: 50%; /* Adjust the desired width */
    margin: 0 auto;
  }

  .form-control-long{
    width: 100%;
  }

  .contact-form{
    padding: 20px;
  }

  /* Adjust the width and styling of the select element */
.form-control-long select {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Adjust the appearance of the select dropdown arrow */
.form-control-long select::-ms-expand {
  opacity: 0;
}

.form-control-long select:focus {
  border-color: #5AC7D4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}