body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 300px;
  text-align: center;
}


h1 {
  margin-bottom: 20px;
}

.button-group button {
  margin: 5px;
  padding: 10px 20px;
  background: #f8b500;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}


button:hover {
  background: #d99b00;
}

input {
  width: 90%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Hide sections by default */
.form-section {
  display: none;
  margin-top: 15px;
}


.form-section button {
  margin-top: 10px;
  width: 90%;
}

