.fe-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 0 40px;
  font-family: inherit;
}

.fe-form-wrap h2 {
  font-size: 28px;
  color: #fff;
  margin: 0 0 8px;
}

.fe-form-wrap .fe-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
  line-height: 1.6;
}

.fe-field {
  margin-bottom: 20px;
}

.fe-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fe-required {
  color: #e87b6e;
  margin-left: 2px;
}

.fe-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  margin-left: 4px;
}

.fe-field input[type="text"],
.fe-field input[type="email"],
.fe-field input[type="tel"],
.fe-field select,
.fe-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  color: #111;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.fe-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fe-field input:focus,
.fe-field select:focus,
.fe-field textarea:focus {
  outline: none;
  border-color: #c8a96e;
}

.fe-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* File upload */
.fe-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.15s, background 0.15s;
}

.fe-file-label:hover {
  border-color: #c8a96e;
  background: rgba(200,169,110,0.08);
}

.fe-file-label svg {
  flex-shrink: 0;
}

.fe-file-label .fe-file-name {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
}

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

/* Other position field */
.fe-other-field {
  display: none;
  margin-top: 10px;
}

.fe-other-field.visible {
  display: block;
}

/* Section divider */
.fe-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  margin: 28px 0 20px;
}

/* Checkbox */
.fe-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  cursor: pointer;
}

.fe-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: #c8a96e;
  cursor: pointer;
}

/* Submit */
.fe-submit {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 14px 20px;
  background: #c8a96e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.fe-submit:hover { background: #b8935a; }
.fe-submit:disabled { background: #ccc; cursor: not-allowed; }

/* Messages */
.fe-message {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
}

.fe-message.success {
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.4);
  color: #a8f0c6;
}

.fe-message.error {
  background: rgba(231,76,60,0.15);
  border: 1px solid rgba(231,76,60,0.4);
  color: #f5b7b1;
}
