/* css/base.css */

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #f4f5f7;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}

.onboarding {
  max-width: 500px;
  margin: 80px auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.question {
  margin-bottom: 20px;
  text-align: left;
}

select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: #0070f3;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #005ecb;
}

#error {
  color: red;
  margin-top: 10px;
  font-size: 0.9rem;
}
