body {
  background: linear-gradient(45deg, #33ccff, #99ffcc);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.form-container {
  background-color: #ffffff;
  width: 400px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

label {
  color: #333;
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin: 10px 0 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  resize: vertical;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  min-height: 100px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #33ccff;
  box-shadow: 0 0 5px rgba(51,204,255,0.5);
}

button {
  background: navy;
  color: white;
  padding: 10px 30px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s;
}

button:hover {
  background: lightblue;
}