body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #1a132f;
  color: white;
  display: flex;
  justify-content: center;
  padding: 40px;
}

.form-section {
  background: #21153c;
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.highlight {
  color: #bb66ff;
}

.subtext {
  font-size: 16px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  gap: 10px;
}

input, select, button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

input, select {
  flex: 1;
  background: #2e2150;
  color: white;
}

select option {
  color: black;
}

button {
  background: #bb66ff;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #a24be2;
}
