
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f3b4d, #0f1e28);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.form-wrapper {
  background: #f2f2f2;
  padding: 30px;
  border-radius: 18px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.card-img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 20px;
}
h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}
form input, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
button {
  background-color: #28a745;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  width: 100%;
  cursor: pointer;
}
button:hover {
  background-color: #218838;
}
.note {
  font-size: 12px;
  color: #777;
}
