* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f2f6fc;
  padding: 20px;
}

.container {
  max-width: 600px;
  background: #fff;
  margin: auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

h2 {
  text-align: center;
  color: #0d47a1;
}

.subtitle {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
}

h3 {
  margin-top: 25px;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea, select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 12px;
  background: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background: #08306b;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}



/* Responsive */
@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
  }
}
