/* Account-deletion pages (konto-loeschen / en/delete-account).
   A calm, centred single-card layout on the warm site background. Scoped under
   .bn-account so it never leaks into the rest of the site. */

.bn-account {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 20px 80px;
  background: #faf7f2;
}

.bn-account-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid #ece7df;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(125, 8, 69, 0.08);
  padding: 36px 34px 34px;
}

.bn-account-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #7d0845;
  margin: 0 0 10px;
}

.bn-account-card h1 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1f2328;
  margin: 0 0 14px;
  line-height: 1.2;
}

.bn-account-card p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #3a4047;
  margin: 0 0 14px;
}

.bn-account-card p.bn-account-fineprint {
  font-size: 13px;
  color: #9aa0a6;
}

.bn-account-card a {
  color: #7d0845;
  text-decoration: underline;
}

.bn-account-note {
  background: #fbf3f7;
  border: 1px solid #f0d6e2;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 20px;
}

.bn-account-note p { margin: 0; font-size: 14px; color: #6b2347; }

.bn-account-form { margin-top: 4px; }

.bn-account-field { display: block; margin: 0 0 16px; }

.bn-account-field span {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3a4047;
  margin: 0 0 6px;
}

.bn-account-field input[type="email"] {
  width: 100%;
  height: 46px;
  border: 1px solid #d8d2c8;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  color: #1f2328;
  background: #fff;
}

.bn-account-field input[type="email"]:focus {
  outline: none;
  border-color: #7d0845;
  box-shadow: 0 0 0 3px rgba(125, 8, 69, 0.12);
}

.bn-account-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 22px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: #3a4047;
}

.bn-account-checkbox input { margin-top: 2px; flex-shrink: 0; }

.bn-account-btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 12px;
  background: #7d0845;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.bn-account-btn:hover:not(:disabled) { background: #5e2240; }
.bn-account-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.bn-account-state { display: none; }
.bn-account-state.is-visible { display: block; }

.bn-account-icon {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 12px;
}

.bn-account-back {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #7d0845;
  text-decoration: none;
}
.bn-account-back:hover { text-decoration: underline; }
