.dabm-form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  background: #000; /* black background */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.dabm-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff; /* white field names */
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent; /* black background visible */
  color: #fff; /* white text */
}

.form-field select option {
  background: #000; /* dropdown black */
  color: #fff; /* white dropdown text */
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ee869dff;
  box-shadow: 0 0 0 3px rgba(34,113,177,0.2);
  outline: none;
}

/* Captcha Section */
.captcha-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between captcha text, reset button, and input */
  flex-wrap: wrap; /* ensures responsiveness on small screens */
  margin-top: 10px;
  padding: 12px;
  background: #000; /* black */
  border: 1px dashed #ccc;
  border-radius: 8px;
  font-size: 14px;
  color: #fff; /* white text */
}

.captcha-field span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px; /* makes captcha more readable */
  color: #fff; /* captcha text white */
}

.captcha-field button {
  background: transparent;
  border: 1px solid #ee869dff;
  border-radius: 6px; 
  padding: 6px 10px;
  cursor: pointer;
  color: #ee869dff;
  transition: all 0.3s ease;
}

.captcha-field button:hover {
  background: #ee869dff;
  color: #fff;
}

.captcha-field input {
  flex: 1;
  min-width: 120px;
  margin-left: 60px !important;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: transparent;
  color: #fff; /* white input text */
}

/* Submit Button */
.submit-button {
  background: #000; /* black button */
  width:100%;
  color: #fff; /* white text */
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border: 1px solid #fff; /* white border */
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #ff9800; /* orange hover */
  color: #000; /* black text */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3);
}
