.listing-form-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.form-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 15px;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.alert-error {
  background: #ff4444;
  color: #fff;
}

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

.form-group label {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.required-label .required-star {
  color: #ff4444;
  font-weight: bold;
  margin-left: 5px;
}

.field-hint {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: normal;
  margin-top: 4px;
}

.field-hint-important {
  color: #ff9500;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0a84ff;
}

.form-textarea {
  resize: vertical;
  font-family: monospace;
}

.currency-checkboxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.currency-checkbox-label {
  cursor: pointer;
}

.currency-checkbox {
  display: none;
}

.currency-checkbox-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #2a2a2a;
  border: 2px solid #444;
  border-radius: 8px;
  color: #ccc;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.currency-checkbox:checked + .currency-checkbox-custom {
  background: rgba(166, 34, 136, 0.2);
  border-color: #A62288;
  color: #A62288;
}

.currency-icon {
  font-size: 20px;
  font-weight: bold;
}

.currency-svg-icon {
  width: 20px;
  height: 20px;
}

.captcha-group label {
  margin-bottom: 12px;
}

.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.captcha-image {
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  border: 2px solid #444;
  background: #2a2a2a;
  padding: 5px;
}

.captcha-input {
  max-width: 300px;
}

.captcha-help {
  font-size: 13px;
  color: #888;
  margin: 8px 0 0 0;
}

.form-actions {
  margin-top: 35px;
  text-align: center;
}

.submit-btn {
  padding: 15px 40px;
  background: #A62288;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background: #8B1C73;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(166, 34, 136, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-file-input-visible {
  width: 100%;
  padding: 12px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s;
  cursor: pointer;
}

.form-file-input-visible:focus {
  outline: none;
  border-color: #A62288;
}

.form-file-input-visible:hover {
  border-color: #A62288;
}

.logo-reminder {
  background: #2a2a00;
  border: 1px solid #ff9500;
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-reminder .reminder-icon {
  font-size: 18px;
  margin-right: 8px;
}

.logo-reminder span {
  color: #ffb84d;
  font-size: 14px;
}

.logo-reminder strong {
  color: #fff;
}

.logo-reminder .field-hint {
  color: #888;
  font-size: 13px;
  margin-top: 5px;
}

.product-type-checkboxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-checkbox-label {
  cursor: pointer;
}

.product-checkbox {
  display: none;
}

.product-checkbox-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #2a2a2a;
  border: 2px solid #444;
  border-radius: 8px;
  color: #ccc;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.product-checkbox:checked + .product-checkbox-custom {
  background: rgba(34, 136, 166, 0.2);
  border-color: #2288A6;
  color: #2288A6;
}

.product-icon {
  font-size: 20px;
}
