/* Generic and popular WordPress form plugin styling. */
.datarecovery-child-theme input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.datarecovery-child-theme select,
.datarecovery-child-theme textarea,
.datarecovery-child-theme .wpforms-field input,
.datarecovery-child-theme .wpforms-field select,
.datarecovery-child-theme .wpforms-field textarea,
.datarecovery-child-theme .wpcf7-form-control:not(.wpcf7-submit),
.datarecovery-child-theme .fluentform .ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--dr-border);
  border-radius: var(--dr-radius-sm);
  background: #fff;
  color: var(--dr-text);
  font: inherit;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.datarecovery-child-theme textarea,
.datarecovery-child-theme .wpforms-field textarea,
.datarecovery-child-theme .wpcf7-form-control.wpcf7-textarea,
.datarecovery-child-theme .fluentform textarea.ff-el-form-control {
  min-height: 150px;
  resize: vertical;
}

.datarecovery-child-theme input:focus,
.datarecovery-child-theme select:focus,
.datarecovery-child-theme textarea:focus,
.datarecovery-child-theme .wpforms-field input:focus,
.datarecovery-child-theme .wpforms-field select:focus,
.datarecovery-child-theme .wpforms-field textarea:focus,
.datarecovery-child-theme .wpcf7-form-control:focus,
.datarecovery-child-theme .fluentform .ff-el-form-control:focus {
  border-color: var(--dr-accent);
  outline: 0;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--dr-accent), transparent 86%);
}

.datarecovery-child-theme label,
.datarecovery-child-theme .wpforms-field-label,
.datarecovery-child-theme .ff-el-input--label label {
  color: var(--dr-graphite-900);
  font-size: 14px;
  font-weight: 700;
}

.dr-form-card,
.datarecovery-child-theme .wpforms-container,
.datarecovery-child-theme .fluentform,
.datarecovery-child-theme .wpcf7 {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--dr-border);
  border-radius: var(--dr-radius-lg);
  background: #fff;
  box-shadow: var(--dr-shadow-md);
}

.datarecovery-child-theme input[type="submit"],
.datarecovery-child-theme button[type="submit"],
.datarecovery-child-theme .wpforms-submit,
.datarecovery-child-theme .wpcf7-submit,
.datarecovery-child-theme .ff-btn-submit {
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--dr-radius-sm);
  background: var(--dr-accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.datarecovery-child-theme input[type="submit"]:hover,
.datarecovery-child-theme button[type="submit"]:hover,
.datarecovery-child-theme .wpforms-submit:hover,
.datarecovery-child-theme .wpcf7-submit:hover,
.datarecovery-child-theme .ff-btn-submit:hover {
  background: var(--dr-accent-hover);
}

.datarecovery-child-theme input::placeholder,
.datarecovery-child-theme textarea::placeholder {
  color: #7a8491;
  opacity: 1;
}
