body {
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, #f5f0ff 0%, #e6e0ff 100%);
  min-height: 100vh;
  box-sizing: border-box;
}

form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  padding: 0;
  box-sizing: border-box;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #6b4e9d;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #e0d5f9;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #8a6bc1;
  box-shadow: 0 0 5px rgba(138, 107, 193, 0.2);
}

textarea {
  height: 100px;
  resize: vertical;
}

#imagePreview {
  max-width: 50%;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button[type="submit"] {
  background: linear-gradient(135deg, #8a6bc1 0%, #6b4e9d 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #9d82d2 0%, #8a6bc1 100%);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(107, 78, 157, 0.3);
}

h1 {
  color: #6b4e9d;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
