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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #333;
}

.container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
}

#title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
}

#description {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #666;
}

label {
  display: block;
  margin: 1rem 0 0.3rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102,126,234,0.2);
}

fieldset {
  border: none;
  margin: 1rem 0;
}

fieldset legend {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

fieldset label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.2rem 0;
}

fieldset input[type="radio"] {
  width: auto;
}

textarea {
  resize: vertical;
}

button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  margin-top: 1.5rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #5a6fd6;
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }
  .container {
    padding: 1.5rem;
  }
}
