/* Style text input fields */
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #333;
  border-radius: 0px;
  box-sizing: border-box;
  font-size: 16px;
  margin-bottom: 16px;
  background-color: #fff;
}

/* Style labels */
form label {
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
  color: #000;
}

/* Style required field asterisks */
form label span.required {
  color: #e63946;
  margin-left: 4px;
}

/* Style textarea */
form textarea {
  height: 120px;
  resize: vertical;
}

/* Style submit button */
form input[type="submit"],
form button[type="submit"] {
  background-color: #c6392d; /* red button */
  color: white;
  padding: 12px 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin-top: 10px;
  width: 100%;
  transition: background-color 0.3s ease;
}

/* Button hover effect */
form input[type="submit"]:hover,
form button[type="submit"]:hover {
  background-color: #a42e25;
}