body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f8ff;
  margin: 0;
  padding: 0;
}

.upload-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.upload-box {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  animation: slideUp 0.6s ease-in-out;
}

.icon-upload {
  text-align: center;
  margin-bottom: 10px;
}

.upload-box h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #2c3e50;
}

.upload-box p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

.upload-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.upload-form input,
.upload-form select,
.upload-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
}

.upload-form input:focus,
.upload-form select:focus,
.upload-form textarea:focus {
  outline: none;
  border-color: #00cec9;
  background: #fff;
}

.upload-btn {
  background: linear-gradient(45deg, #0984e3, #00b894);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s ease;
}

.upload-btn:hover {
  background: linear-gradient(45deg, #00b894, #6c5ce7);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1;}
}
