.digityza-form-wrapper {
  background: #000;
  padding: 30px;
  font-family: 'Poppins', sans-serif;
  margin: auto;
  color: #fff;
}
#digityza-lead-form-ui input,
#digityza-lead-form-ui select,
#digityza-lead-form-ui textarea {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: white;
  font-size: 15px;
}
#digityza-lead-form-ui input::placeholder,
#digityza-lead-form-ui textarea::placeholder {
  color: #999;
}
#digityza-lead-form-ui button {
  background: transparent;
  border: 1px solid white;
  color: black;
  background-color: white;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
#digityza-lead-form-ui button:hover {
  background-color: #eee;
}
.attachment-label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  color: white;
}
.attachment-label svg {
  margin-right: 6px;
  fill: white;
}
/* Default dropdown appearance */
#digityza-lead-form-ui select {
  background-color: #000;
  color: #fff;
  border: 1px solid #555;
  padding: 10px;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Remove the blue highlight on focus */
#digityza-lead-form-ui select:focus {
  outline: none;
  border:none;
  border-color: #999;
  background-color: #fff;
  color: #000;
}

/* Option styling */
#digityza-lead-form-ui option {
  background: #000;
  color: #fff;
}

/* Option hover/focus (note: limited browser support) */
#digityza-lead-form-ui select option:checked {
  background: #fff !important;
  color: #000 !important;
}
input,
textarea,
select {
  border: none;               /* Removes border */
  outline: none;              /* Removes default focus outline */
  background: transparent;    /* Optional: transparent background */
  color: #fff;                /* Text color */
  caret-color: #fff;          /* Makes sure the cursor is visible */
  font-size: 16px;
  width: 100%;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.6); /* Placeholder styling */
}