/*
 * Diritto di recesso (art. 54-bis) — account + shortcode guest.
 * Palette Benessence: verde scuro #02382F, accento #4CA585, navy #1D3653,
 * sfondi #E2F1ED / #DAF6DD.
 */
.bns-recesso {
  margin-top: 2rem;
  font-family: inherit;
}
.bns-recesso *,
.bns-recesso *::before,
.bns-recesso *::after {
  box-sizing: border-box;
}
.bns-recesso-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #02382F;
  margin: 0 0 0.5rem;
}
.bns-recesso-intro,
.bns-recesso-note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1D3653;
  margin: 0 0 1rem;
}
.bns-recesso-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 1.75rem;
  border: 0;
  border-radius: 10px;
  background: #02382F;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.bns-recesso-cta:hover {
  background: #0a4a3e;
  color: #fff;
}
.bns-recesso-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.bns-recesso-link {
  background: none;
  border: 0;
  color: #4CA585;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bns-recesso-panel {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: #E2F1ED;
}
.bns-recesso-panel-title {
  font-weight: 700;
  color: #1D3653;
  margin: 0 0 0.75rem;
}
.bns-recesso-riepilogo {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: #1D3653;
}
.bns-recesso-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}
@media (min-width: 640px) {
  .bns-recesso-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.bns-recesso-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1D3653;
}
.bns-recesso-grid input {
  height: 44px;
  padding: 0 1rem;
  border: 1px solid #B6DBD3;
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  font-weight: 400;
  color: #1D3653;
}
.bns-recesso-grid input:focus {
  outline: none;
  border-color: #4CA585;
  box-shadow: 0 0 0 3px rgba(76, 165, 133, 0.25);
}
.bns-recesso-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1D3653;
  cursor: pointer;
}
.bns-recesso-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.bns-recesso-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.bns-recesso-result,
.bns-recesso-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.bns-recesso-ok {
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
}
.bns-recesso-ko {
  background: rgba(198, 40, 40, 0.1);
  color: #b71c1c;
}
.bns-recesso-done {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #DAF6DD;
  color: #02382F;
  font-size: 0.95rem;
}
