/* forms.css — Weltweberei mobile-first form design */

input,
textarea,
select,
button {
  font: inherit;
  color: #111;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0.6em 0.8em;
  margin: 0;
  border-radius: 0.3em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
}

textarea {
  min-height: 8em;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: 2px solid #4169e1;
  outline-offset: 2px;
  background-color: #fefefe;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.4em;
}

label {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 500;
  color: #333;
}

fieldset {
  border: none;
  margin: 0 0 1.5em;
  padding: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
}

button,
input[type="submit"] {
  background-color: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover,
input[type="submit"]:hover {
  background-color: #333;
}