/* Keep the signup consent control clear of its legal copy at every breakpoint. */
html body .auth-card.signup-mode .auth-legal-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 11px !important;
  width: 100% !important;
  margin: 3px 0 1px !important;
  padding: 2px 0 !important;
  cursor: pointer;
}

html body .auth-card.signup-mode .auth-legal-consent input[type="checkbox"] {
  position: static !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border-radius: 5px !important;
  transform: none !important;
  accent-color: #159f87;
  cursor: pointer;
}

html body .auth-card.signup-mode .auth-legal-consent > span {
  display: block;
  min-width: 0;
  padding: 0 !important;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  html body .auth-card.signup-mode .auth-legal-consent {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    padding: 3px 1px !important;
    font-size: 0.72rem !important;
  }
}
