/* Basic styling for the form container */
#contact_us_form {
  width: 600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Styling for labels */
#contact_us_form > label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  width: 45%; /* Adjust the label width as needed */
}

/* Styling for input fields */
#contact_us_form > div > input[type="text"],
#contact_us_form > div >  select {
  width: 48%; /* Use 48% to create two equal columns with some spacing between */
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Styling for select dropdown */
#contact_us_form > div >  select {
  cursor: pointer;
}

/* Styling for the submit button */
#contact_us_form > div >  input[type="submit"] {
  background-color: #3498db;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

#contact_us_form >  input[type="submit"]:hover {
  background-color: #2980b9;
}

/* Optional: Add some extra spacing between the form fields */
#contact_us_form >  div > * {
  margin-bottom: 20px;
}
.close-button {
    position: absolute;
    top: 10px; /* Adjust this value to control the distance from the top */
    right: 10px; /* Adjust this value to control the distance from the right */
    background: none;
    border: none;
    cursor: pointer;
    /* Other styling properties for the button */
}

.button_close{
    width: 150px;
    height: 45px;
    border: 2px solid #1859ea;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #1859ea;
    transition: background-color 0.3s, color 0.3s;
}
.modal1_bottom_close{
    position: absolute;
    bottom: 60px;
    right: 4%;
}