#contact-title {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 500px;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid gray;
}

fieldset {
  border: none;
  width: 500px;
  padding: 0;
  margin: 0;
}

legend, label {
  font-size: 1.1rem;
}

.text-inputs label {
  display: block;
  margin-bottom: 10px;
}

.radio-item {
  display: block;
  margin-top: 10px;
}

input[type="checkbox"] {
  margin-top: 30px;
}

.form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.form-buttons input {
  flex: 1;
  padding: 10px;
  background-color: white;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

input[type="reset"] {
  flex: 0 0 calc(30% - 5px);
  transition: 0.5s;
}

input[type="submit"] {
  flex: 0 0 calc(70% - 5px);
  transition: 0.5s;
}

input[type="reset"]:hover, input[type="submit"]:hover {
  box-shadow: 0 0 3px 3px white;
}

input[type="reset"]:active, input[type="submit"]:active {
  opacity: .7;
}