body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9c27b0;
  font-family: Arial, sans-serif;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h2 {
  text-align: center;
  color: #9c27b0;
}

.intro {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
}

label {
  display: block;
  margin: 10px 0 5px;
  color: #333;
  font-weight: bold;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #9c27b0;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #9c27b0;
  box-shadow: none;
  outline: none;
  transition: none;
}

button {
  background: #9c27b0;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #7b1fa2;
}

.note {
  font-size: 12px;
  color: #666;
  text-align: left;
  margin-top: 10px;
}

.required {
  color: #9c27b0;
}