
form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 2rem auto;
  color: #000;
}


form p {
  margin-bottom: 1.5rem;
}


form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #282F46;
}


form input,
form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


form input:focus,
form textarea:focus {
  border-color: #282F46;
  box-shadow: 0 0 0 3px rgba(40,47,70,0.2);
  outline: none;
}


.helptext {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
  font-style: italic;
}


form .btn {
  background: #282F46;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form .btn:hover {
  background: #1c2133;
}
