body { font-family: Arial, sans-serif; background-color: #f8f9fa; color: #333; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); max-width: 500px; width: 100%; } h1 { margin-bottom: 20px; font-size: 24px; text-align: center; } label { display: block; margin-bottom: 10px; } input, select, textarea, button { width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } textarea { height: 150px; resize: none; } button { background-color: #007bff; color: white; border: none; cursor: pointer; } button:hover { background-color: #0056b3; } #downloadButton { background-color: #28a745; margin-top: 10px; } #downloadButton:hover { background-color: #218838; }