body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: Pink;
}
h2 {
  text-align: center;
}

.form-group {
  width: 60%;
  background: white;
  text-align: left;
   display: block;
  margin: 0 auto;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Crucial for width alignment */
}
