/* signup.css */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.form-container {
  background: #f9f9f9;
  border: 2px solid green;
  border-radius: 12px;
  padding: 30px;
  width: 320px;
  text-align: center;
}

.form-container img {
  width: 80px;
  margin-bottom: 15px;
}

h2 {
  color: green;
  margin-bottom: 20px;
}

input {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid green;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  width: 95%;
  padding: 12px;
  background: green;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

label {
  display: none;
}

/* Multi-step form */
.step {
  display: none;
}

.step.active {
  display: block;
}

.step {
  display: none;
}

.step.active {
  display: block;
}
