body{
  background-color: #000000;
}


.kq-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000; 
  z-index: -1;
}

.contribution-form {
      max-width: 700px;
      margin: auto;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      margin-top: 120px;
      margin-bottom: 50px;
    }

    .contribution-form h2 {
      text-align: center;
      font-size: 1.5rem;
      color: #f0c14b;
      margin-bottom: 20px;
      text-shadow: 1px 0px 0px rgb(0 0 2);
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    label {
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
      color: #323232;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    input[type="file"] {
      display: block;
      margin-top: 0.5rem;
    }

#preview-area {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.preview-item {
  position: relative;
  width: 100px;
  height: 100px;
}

.preview-item img,
.preview-item .file-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.preview-item .file-icon {
  background-color: #f1f1f1;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-align: center;
}

.preview-item .remove-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}



    .submit-btn {
      background: #f0c14b;
      color: white;
      padding: 0.9rem 1.6rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      width: 100%;
    }

    .submit-btn:hover {
      background: #ecb936;
    }


 /* Responsive */
@media (max-width: 768px) {
  .preview-item {
    width: 80px;
    height: 80px;
  }

  .preview-item .file-icon {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  
  .contribution-form {
      margin-top: 80px;
    }

  #preview-area {
    justify-content: center;
  }

  .preview-item {
    width: 70px;
    height: 70px;
  }

  .preview-item .file-icon {
    font-size: 10px;
  }
}
   