
/* Core look */
.ppa13-terms-wrap {
  margin: 12px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  font-size: 16px;
  line-height: 1.5;
}
.ppa13-terms-label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: 16px;
}
.ppa13-terms-wrap input[type="checkbox"] {
  transform: scale(1.2);
  margin-top: 3px;
}

/* Error highlight (wrapper) */
.ppa13-error {
  border: 2px solid #d33 !important;
  background: #fee !important;
}
.ppa13-terms-error {
  color: #b11;
  font-size: 14px;
  margin-top: 6px;
}

/* Shake animation on error */
@keyframes ppa13-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.ppa13-shake { animation: ppa13-shake .5s linear; }

/* NEW: color the checkbox itself in red when error */
.ppa13-error input[type="checkbox"] {
  outline: 2px solid #d33 !important;
  box-shadow: 0 0 0 2px #fbb !important;
  border-color: #d33 !important;
}
