.form-container {
      background: #fff;
      max-width: 80%;
      margin: auto;
      padding: 20px;
      /* border-radius: 8px; */
      box-shadow: 0 0 100px -30px #ab9454;
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      font-weight: bold;
      margin-bottom: 6px;
      display: block;
    }

    input[type="text"],
    textarea {
      width: 100%;
      padding: 8px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    textarea {
      resize: vertical;
    }

    .upload-box {
      border: 2px dashed #ccc;
      border-radius: 6px;
      height: auto;
      min-width: 100px;
      max-width: 330px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #888;
      font-size: 48px;
      position: relative;
      overflow: hidden;
      margin: auto;
    }

    .upload-box img {
      max-height: 100%;
      min-width: 100%;
      object-fit: cover;
    }

    .upload-controls {
      display: none;
      margin-top: 10px;
      gap: 10px;
    }

    .upload-controls button {
      padding: 6px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .change-btn {
      background: #007BFF;
      color: white;
    }

    .delete-btn {
      background: #dc3545;
      color: white;
    }

    input[type="file"] {
      display: none;
    }

    button[type="submit"] {
      background: #727377;
      color: #fff;
      border: none;
      padding: 10px 15px;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
      margin-top: 15px;
    }

    button[type="submit"]:hover {
      background: #727377;
    }

    select {
      width: 100%;
      padding: 8px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }