#form-wrapper {
  width: 90%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: white;
  font-size: 15px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ff2d55, #8a1f3d);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s cubic-bezier(.25,1.5,.5,1);
}

button:hover {
  transform: translateY(-3px) scale(1.03);
}

#success {
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  display: none;
}
