/* Row 1: Full Name + Email */
.Paperform__Question--name,
.Paperform__Question--email {
  display: inline-block !important;
  width: 48% !important;
  vertical-align: top;
}
.Paperform__Question--name { margin-right: 4%; }

/* Row 2: Address + Phone (address = 80t1g) */
.Paperform__Question--80t1g,
.Paperform__Question--phone {
  display: inline-block !important;
  width: 48% !important;
  vertical-align: top;
}
.Paperform__Question--80t1g { margin-right: 4%; }  /* pushes Phone right */

/* General input styling */
.Paperform__Question input,
.Paperform__Question textarea,
.Paperform__Question .Select__control {
  border-radius: 0;
  padding: 6px 8px;
  font-size: 14px;
  box-shadow: none;
}

/* Condense block spacing */
.Paperform__Question { margin-bottom: -20px; }

/* Scope to your form to avoid side effects */
.Paperform__Container {
  /* Closed dropdown “pill” */
  /* Newer react-select */
  --selector: 1; /* placeholder var to allow grouping below */
}
.Paperform__Container .Select__control,
.Paperform__Container .Select-control {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 1px solid transparent;      /* or your border color */
}

/* Inner value area */
.Paperform__Container .Select__value-container { 
  background: transparent !important; 
}

/* Multi-value chips (if multi-select) */
.Paperform__Container .Select__multi-value { 
  background: transparent !important; 
  box-shadow: none !important; 
}

/* Open menu panel */
.Paperform__Container .Select__menu,
.Paperform__Container .Select-menu-outer {
  background: transparent !important;  /* set to #fff if you want a white menu */
  box-shadow: none !important;
}

/* Dropdown option text and hover behavior */
.Select__option,
.Select-option {
  color: white !important;
  background: transparent !important;
}

/* Prevent white background on hover or selection */
.Select__option--is-focused,
.Select__option--is-selected,
.Select-option.is-focused,
.Select-option.is-selected {
  background: transparent !important;
  color: white !important;
}

/* Space below Contact Reason by padding + cancel the -20px margin */
.Paperform__Question--contactreason {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

/* Add padding on top of Message (key dj0q9) */
.Paperform__Question--dj0q9 {
  padding-top: 60px !important;
  margin-top: 0 !important;
}