body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0fdfc url('/assets/index/kids-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.reg-form {
  background: rgba(255,255,255,0.96);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  color: #f57f17;
}

label {
  font-weight: 600;
  display: block;
  margin: 10px 0 5px;
}

input, select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 10px;
  background: #fdd835;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
}

button:hover {
  background: #fbc02d;
}

.error { color: red; text-align: center; margin: 10px 0; }
.success { color: green; text-align: center; margin: 10px 0; }
