@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 60px auto;
  padding: 24px;
}

.card {
  background: rgba(15,23,42,0.9);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

h1, h2 {
  margin-top: 0;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #020617;
  color: white;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: linear-gradient(135deg,#2563eb,#7c3aed);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(124,58,237,0.4);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.step1 { background: #92400e; }
.step2 { background: #1d4ed8; }
.step3 { background: #166534; }

.error {
  background: #7f1d1d;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.success {
  background: #14532d;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}
