/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1a0010;
  color: #fbebc7;
  overflow-x: auto;
}

/* Header */
.Header {
  width: 100%;
  padding: 20px;
  background-color: #17000D;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.Logo {
  max-height: 160px;
  width: auto;
}

/* Main Layout */
.MainWrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.UploadSection {
  width: 80%;
  background-color: #F2B3D2;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00EEFF;
  position: relative;
  animation: fadeIn 1.5s ease-in;
}

/* Folded Accent */
.UploadSection::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #f3fe3b, #501e01);
  transform: skewY(-3deg);
  z-index: -1;
}

/* Form Styling */
#uploadForm h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #17000D;
}

label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

input[type="text"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #DEA700;
  border-radius: 6px;
  background-color: #F2CFE0B8;
  color: #17000D;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button[type="button"] {
  background-color: #FFC107;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

button[type="button"]:hover {
  background-color: #FADA79CC;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  background-color: #F6A4EB;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 20px;
  background-color: #00A5FE;
  transition: width 0.4s ease;
}

/* Status Messages */
.status {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.status-success {
  color: green;
}

.status-error {
  color: red;
}

/* Footer */
.Footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #17000D;
  color: #DBC1CF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.3);
}

.AllRightsReserved {
  font-family: "Times New Roman", Times, serif;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .MainWrapper {
    flex-direction: column;
    align-items: center;
  }

  .UploadSection {
    width: 95%;
    padding: 20px;
  }

  button[type="button"] {
    width: 100%;
  }
}

