div.wpcf7 {
  max-width: 700px; /* set the max-width you prefer */
  margin: 0 auto;
}
div.wpcf7 input:not([type="checkbox"]),
}
div.wpcf7 label {
  display: block;
}
input.wpcf7-form-control.wpcf7-submit:hover {
background-color: white;
color: yellow;
}
input.wpcf7-form-control.wpcf7-submit {
background-color: #f57c11;
}
.wpcf7-email {
    width: 50%;
}
.wpcf7-submit {
    width: 50%; /* Or 100% */
}
.wpcf7-submit.my-custom-button {
    background-color: #f57c11; /* Green background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}
.wpcf7-submit.my-custom-button:hover {
    background-color: #1e314f; /* Darker green on hover */
}