/* --- GENERAL FORM STYLES --- */
body {
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  padding: 2rem;
}

form#form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: none;
}

fieldset {
  border: none;
  margin-bottom: 2rem;
  padding: 0;
}

legend {
  font-size: 1.2rem;
  font-weight: 600;
  color: #787741;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.singleField {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

label.normalLabel {
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: #333;
}

input.normalInput,
select.normalSelect {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 0.3rem;
}

input.normalInput:focus,
select.normalSelect:focus {
  border-color: #787741;
  box-shadow: 0 0 0 3px rgba(120, 119, 65, 0.15);
  outline: none;
}

.requiredNotice {
  color: #d32f2f;
  margin-left: 4px;
  font-weight: bold;
}

button.submit {
  background-color: #787741;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.submit:hover {
  background-color: #5e5d32;
}

.successMessage {
  background-color: #f0f5e9;
  border-left: 5px solid #787741;
  padding: 20px 25px;
  margin: 30px auto;
  max-width: 700px;
  border-radius: 8px;
  font-family: "Nunito Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #444;
}

.successMessage h1 {
  color: #2e4d1d;
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.successMessage p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

textarea.normalInput {
  resize: vertical;
  min-height: 100px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea.normalInput:focus {
  border-color: #787741;
  box-shadow: 0 0 0 3px rgba(120, 119, 65, 0.15);
  outline: none;
}


