* {
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(45deg, #ffcccc, #ff99cc, #ff66cc, #ffcce0, #ffccff);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #222;
  padding: 2rem;
  font-size: 16px;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

fieldset {
  border: 2px solid #ff99cc;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  font-weight: bold;
  color: #ff66cc;
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ff99cc;
  border-radius: 5px;
  background: #ffe6f2;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

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

.honeypot-field {
  display: none;
}

.form-elements {
  border: 2px dashed #ff99cc;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

ul {
  border: 5px solid transparent;
  padding: 1rem;
  border-radius: 10px;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #ff66cc, #ff99cc, #ffccff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

li {
  margin-bottom: 1.2em;
  color: #222;
  list-style-type: square;
  font-size: 18px;
  line-height: 1.5;
}

.Timestamp {
  display: none;
}

button {
  background: #ff66cc;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Courier New", monospace;
  font-size: 16px;
}
