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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background-color: #200202;
  color: #fbebc7;
}

/* Top Logo Section */
.Top {
  width: 100%;
  padding: 40px 0;
  background-color: #2a0202;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.LogoImg {
  width: 160px;
  height: auto;
}

/* Main Content */
.Main {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #f3fe3b;
}

/* Form Container */
.FormContainer {
  width: 100%;
  max-width: 720px;
  background-color: #2e0a0a;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 0, 85, 0.3);
}

/* Form Elements */
form {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
  color: #fbebc7;
}

input[type="text"],
input[type="datetime-local"],
input[type="file"],
input[type="url"],
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 20px;
  border: 1px solid #ff0055;
  border-radius: 8px;
  font-size: 15px;
  background-color: #3a0a0a;
  color: #fbebc7;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #f3fe3b;
  outline: none;
}

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

/* Button */
button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #ff0055, #f3fe3b);
  color: #200202;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.02);
}

/* Progress Bar */
#progressContainer {
  width: 100%;
  height: 20px;
  background-color: #3a0a0a;
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}

#progressBar {
  width: 0;
  height: 100%;
  background-color: #00eeff;
  transition: width 0.3s ease;
}

/* Status Message */
#status {
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.status-success {
  background-color: #1d402f;
  color: #aef5c7;
  border: 1px solid #00ff99;
}

.status-error {
  background-color: #400f1d;
  color: #ffb3c7;
  border: 1px solid #ff4d6d;
}

/* Footer */
.Footer {
  width: 100%;
  height: 60px;
  background-color: #2a0202;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.AllRightsReserved {
  font-size: 14px;
  font-family: "Poppins", monospace;
  color: #fbebc7;
}

