/* =====================================================
   JOB APPLICATION PAGE — job-application.css
   ===================================================== */

.jobapp-section {
  padding: 60px 0 80px;
}

.jobapp-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Fields ─────────────────────────────────────────── */
.jobapp-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.jobapp-row .jobapp-field {
  flex: 1;
  margin-bottom: 0;
}

.jobapp-field {
  margin-bottom: 20px;
}

.jobapp-field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--senseye-teal);
  margin-bottom: 6px;
}

.jobapp-field input[type="text"],
.jobapp-field input[type="email"],
.jobapp-field input[type="url"],
.jobapp-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--senseye-white);
}

.jobapp-field input::placeholder,
.jobapp-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.jobapp-field textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── File upload ────────────────────────────────────── */
.jobapp-field-file label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--senseye-teal);
  margin-bottom: 8px;
}

.jobapp-file-input {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jobapp-file-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--senseye-teal);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--senseye-teal);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.jobapp-file-btn:hover {
  background: var(--senseye-teal);
  color: var(--senseye-navy);
}

.jobapp-file-name {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

/* Hide native file input, trigger via label */
.jobapp-file-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* ── Submit ─────────────────────────────────────────── */
.jobapp-submit {
  display: inline-block;
  padding: 14px 48px;
  background: transparent;
  color: var(--senseye-teal);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--senseye-teal);
  border-radius: 999px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.jobapp-submit:hover {
  background: var(--senseye-teal);
  color: var(--senseye-navy);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .jobapp-container {
    padding: 0 24px;
  }

  .jobapp-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .jobapp-row .jobapp-field {
    margin-bottom: 20px;
  }
}
