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

body {
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  background: #f5f5f5;
  color: #414042;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container { width: 100%; max-width: 480px; }

.card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h1 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.subtitle { color: #666; margin-bottom: 1.5rem; font-size: 0.95rem; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; margin-bottom: 0.25rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: #e42e1b;
}
.hint { font-size: 0.8rem; color: #888; margin-top: 0.25rem; display: block; }
.field.error input, .field.error select { border-color: #e42e1b; }
.field .error-msg { color: #e42e1b; font-size: 0.8rem; margin-top: 0.25rem; display: none; }
.field.error .error-msg { display: block; }

.cf-turnstile { margin: 1rem 0; }

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background: #e42e1b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
button[type="submit"]:hover { background: #c9261a; }
button[type="submit"]:disabled { background: #ccc; cursor: not-allowed; }

.response {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
}
.response.success { background: #e8f5e9; color: #2e7d32; }
.response.error { background: #fce4ec; color: #c62828; }
.response.pending { background: #fff3e0; color: #e65100; }
