form {
  max-width: 700px;
  margin: auto;
  background: transparent;
  padding: 1.5em;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  font-family: Arial, sans-serif;
}

label {
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: .5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

button.jwbiz {
  padding: .8em;
  font-weight: 700;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button.jwbiz:hover {
  background-color: #218838;
}

.status-message {
  margin-top: 0;
  padding: 1em;
  border-radius: 6px;
  font-size: 1em;
  text-align: center;
}

.status-message.success {
  background-color: #d4edda;
  color: #155724;
}

.status-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.radio-wrapper {
  display: flex;
  flex-direction: column;
  gap: .5em;
  padding-left: .2em;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: .5em;
  font-weight: normal;
  font-size: .95em;
}

.radio-label input[type='radio'] {
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

span.asterisk {
  color: #f00;
  margin-left: 5px;
  font-weight: 900;
}
