body {
  margin: 0;
  background: #f4f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
}

.page {
  max-width: 900px;
  margin: 40px auto;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.form-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.header {
  text-align: center;
  margin-bottom: 24px;
}

.job-description {
  margin-bottom: 30px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.job-description h2,
.job-description h3 {
  margin-top: 0;
}

.section {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
}

.section h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.field-wrap {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #374151;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: all .15s;
  box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,.15);
}

button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}

button:hover {
  background: #1d4ed8;
}

#submitBtn {
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
}

#status {
  margin-bottom: 20px;
  font-weight: 500;
}


/* =========================
   CHECKBOX GROUP
========================= */

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-item span {
  flex: 1;
}

.checkbox-group {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
}