body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

form {
  background-color: #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
  position: relative;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #ffa500;
  font-size: 1.8rem;
}
  
  label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
  }
  
  textarea,
  input[type="file"],
  input[type="text"],
  input[type="hidden"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    background-color: #2c2c2c;
    color: #ffffff;
    box-sizing: border-box;
  }
  
  textarea:focus,
  input:focus {
    outline: 2px solid #ffa500;
  }
  
  button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  button[type="submit"] {
    background-color: #ffa500;
    color: #000;
  }
  
  button[type="submit"]:hover {
    background-color: #e69500;
  }
  
  button[type="button"] {
    background-color: #000;
    color: #ffa500;
    border: 2px solid #ffa500;
  }
  
  button[type="button"]:hover {
    background-color: #ffa500;
    color: #000;
  }


  .preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
  }
  
  .preview-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
  }
  
  .preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .preview-buttons {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
  }
  
  .preview-buttons button {
    background: #ffa500;
    border: none;
    color: black;
    margin: 2px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
  }