body {
  background: #ffffff;
  color: #102a43;
  font-family: 'Inter', Arial, sans-serif;
}
.candidate-form {
  background: #ffffff;
  border: 1px solid rgba(16, 38, 71, 0.08);
  box-shadow: 0 24px 60px rgba(16, 38, 71, 0.12);
  padding: 38px;
  border-radius: 24px;
  max-width: none;
  width: 100%;
  margin: 24px 0 40px;
}
.candidate-form .form-header {
  margin-bottom: 28px;
}
.candidate-form .form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f2a10;
  background: #d5f487;
  box-shadow: inset 0 0 0 1px rgba(16, 38, 71, 0.08);
  margin-bottom: 14px;
}
.candidate-form h3 {
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 10px;
  color: #102a43;
}
.candidate-form .form-header p {
  margin: 0;
  color: #4f6272;
  font-size: 1rem;
  max-width: 86%;
}
.form-section {
  padding: 24px 0;
  border-top: 1px solid rgba(16, 38, 71, 0.08);
}
.form-section:first-child {
  border-top: none;
}
.section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 20px;
}
.section-title span {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #1f5adb;
  padding-bottom: 4px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e3a5f;
}
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(16, 38, 71, 0.12);
  background: #f5f7fb;
  color: #102a43;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(16, 42, 67, 0.45);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #4f8ffb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 143, 251, 0.12);
  transform: translateY(-1px);
}
.form-field input[type='file'] {
  padding: 12px 14px;
  background: #ffffff;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.candidate-form button {
  background: linear-gradient(135deg, #1f5adb, #1c4db7);
  color: #ffffff;
  border: none;
  border-radius: 99px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.candidate-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(31, 58, 113, 0.18);
  filter: brightness(1.03);
}
.candidate-form button:active {
  transform: translateY(0);
}
@media (max-width: 980px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-actions {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .candidate-form {
    padding: 24px;
    width: calc(100% - 28px);
  }
  .form-field label {
    font-size: 0.88rem;
  }
  .form-actions {
    margin-top: 22px;
  }
  .candidate-form button {
    width: 100%;
    padding: 16px;
  }
}
