/* Center the form container */
.form-container {
  max-width: 660px;
  margin: 0 auto; /* Center the container horizontally */
  padding: 30px;
}

/* Style for the form */
form {
  width: 100%; /* Ensure the form uses full width of its container */
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box; /* Include padding in the width calculation */
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px solid #ccc;
}

textarea {
  font-family: Arial, sans-serif;
  max-width: 375px;
  min-width: 244.8px;
  max-height: 200px;
  min-height: 200px;
  box-sizing: border-box; /* Include padding in the width calculation */
}

input[type="text"],
input[type="email"],
textarea{
  border: 1px solid #ccc;
  padding: 12px; /* Increase padding for larger fields */
  font-size: 18px; /* Increase font size */
  width: 100%; /* Ensure full width of container */
  box-sizing: border-box; /* Include padding in the width calculation */
  margin-bottom: 10px; /* Add some space below each input */
}

/* Style for submit button */
button[type="submit"] {
  padding: 15px 25px; /* Increase padding for a larger button */
  font-size: 18px; /* Increase font size */
  background-color: #f0f0f0; /* Set a neutral background color */
  color: #333; /* Set a neutral text color */
  border: 2px solid #ccc; /* Add a border if desired */
  border-radius: 5px; /* Add border radius for rounded corners */
  cursor: pointer; /* Change cursor to pointer on hover */
  margin-top: 10px; /* Add some space above the button */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Add transition effect */
}

button[type="submit"]:hover {
  background-color: #e0e0e0; /* Change background color on hover */
  border-color: #999; /* Change border color on hover */
}

