/* Reset — landing page styles are inlined in index.html (Benchmark-minimal).
   This file exists for apply.html which needs more layout. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding: 2rem;
}

/* Apply form page */
.apply-container {
  max-width: 480px;
  margin: 0 auto;
  padding-top: 3rem;
}

.apply-container h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.apply-container h1 span { color: #666; font-weight: 400; }

.apply-container .subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.apply-container .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
}
.apply-container .back-link:hover { color: #111; }

form { display: flex; flex-direction: column; gap: 1.25rem; }

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.15s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #111;
}

textarea { min-height: 80px; resize: vertical; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #111;
}

button[type="submit"] {
  padding: 0.875rem 1.5rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

button[type="submit"]:hover { background: #333; }

.form-footer {
  color: #aaa;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
