/* Password Gate — lock card styles.
 *
 * Renders inline wherever the [fdm_gate] shortcode sits, so the layout
 * stays compact and centered within the host theme. Straight edges to
 * stay consistent with the FDE brand rule.
 */

.fdm-gate { font-family: "Raleway", "Inter", system-ui, -apple-system, sans-serif; }
.fdm-gate--locked {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.fdm-gate__card {
  width: 100%;
  max-width: 420px;
  background: #1d1611;
  color: #ffffff;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.fdm-gate__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: #b8963e;
  background: rgba(184,150,62,0.10);
}
.fdm-gate__title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}
.fdm-gate__desc {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.65);
}
.fdm-gate__field {
  display: block;
  text-align: left;
  margin-bottom: 12px;
}
.fdm-gate__field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4b870;
  margin-bottom: 6px;
}
.fdm-gate__field input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  color: #14100a;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.fdm-gate__field input:focus {
  outline: 0;
  border-color: #b8963e;
  box-shadow: 0 0 0 3px rgba(184,150,62,0.35);
}
/* Defeat Chrome/Safari autofill tinting so the pw input stays white. */
.fdm-gate__field input:-webkit-autofill,
.fdm-gate__field input:-webkit-autofill:hover,
.fdm-gate__field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #14100a;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  box-shadow:        0 0 0 1000px #ffffff inset;
  caret-color: #14100a;
}
.fdm-gate__error {
  margin: 0 0 12px;
  font-size: 13px;
  color: #ff8b8b;
  text-align: left;
}
.fdm-gate__submit {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 0;
  border-radius: 0;
  background: #ed5c2e;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.fdm-gate__submit:hover {
  background: #f07246;
  transform: translateY(-1px);
}
