<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Add some padding around the registration form.
 */
.lc-registration-ui-registration-form-opener {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

/**
 * Display a list of centered register buttons.
 */
.lc-registration-ui-registration-form-opener-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
}

/**
 * Display all non-button items centered beneath the buttons.
 */
.lc-registration-ui-registration-form-opener-form &gt; :not(button) {
  flex-basis: 100%;
  flex-grow: 1;
  order: 1;
}
</pre></body></html>