
.upload-container {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 850px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.upload-title {
  text-align: center;
  color: #6a5acd;
  margin-bottom: 25px;
  font-size: 26px;
}


.upload-flex {
  display: flex;
  gap: 25px;
}

.drag-box {
  flex: 1;
  height: 300px;
  border: 2px dashed #bfbfbf;
  border-radius: 12px;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  font-size: 16px;
  cursor: pointer;
}

#file-upload {
  display: none;
}

.upload-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.form-input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.form-textarea {
  height: 90px;
  resize: none;
}

.post-btn {
  margin-top: 20px;
  padding: 12px;
  background: #6a5acd;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}
