.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #F5F5F5;
  color: #333;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  font-family: Arial, sans-serif;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #F5F5F5;
  color: #333;
  font-size: 16px;
  font-family: Arial, sans-serif;
  resize: none;
  margin-top: 5px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: #FFF;
  font-size: 16px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button:hover {
  background-color: #555;
}
