form {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

input, textarea, select {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 6px;
  padding: 0;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 111, 99, 0.18);
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #2b3136;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.form-note {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 4px;
  margin-bottom: 8px;
}

#progress-bar-container {
  height: 12px;
  background: #f0f0f0;
  margin-top: 30px;
  border-radius: 6px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.3s ease;
}
