/* === Registration and account forms === */
/* Account registration and profile forms ------------------------------- */
[data-my-conf-form-style].my_conf-account-surface,
[data-my-conf-form-style] .my_conf-account-surface {
  width: 100%;
  min-width: 0;
}
[data-my-conf-form-style] .my_conf-form-consents {
  min-width: 0;
}

[data-my-conf-form-style] .my_conf-form-consents--embedded {
  display: grid;
  gap: 10px;
  min-inline-size: 0;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border: 0;
  border-block-start: 1px solid var(--my-conf-field-line, #cbd3da);
}

[data-my-conf-form-style] .my_conf-form-consents__heading {
  margin: 0;
  padding: 0;
  color: var(--my-conf-field-ink, #17212b);
  font-size: 14px;
  font-weight: 800;
}

[data-my-conf-form-style] .my_conf-form-consents > [data-registration-profile-grid] {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

[data-my-conf-form-style] .my_conf-form-consents .my_conf-login-form__check {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--my-conf-field-line, #cbd3da);
  background: var(--my-conf-field-soft, #f5f7f8);
}
/* Consent, final actions and registration review ------------------------- */
[data-my-conf-form-style] .my_conf-consent-option {
  display: grid;
  grid-template-columns: var(--my-conf-checkbox-size, 19px) minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  row-gap: 4px;
}

[data-my-conf-form-style] .my_conf-consent-option > input[type="checkbox"] {
  grid-column: 1;
  grid-row: 1;
}

[data-my-conf-form-style] .my_conf-consent-option__copy {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 4px;
  min-width: 0;
}

[data-my-conf-form-style] .my_conf-consent-option > .my_conf-field__error {
  grid-column: 2;
  margin: 0;
}

[data-my-conf-form-style] .my_conf-consent-option__copy > span {
  color: var(--my-conf-field-ink, #17212b);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

[data-my-conf-form-style] .my_conf-consent-option__copy > small {
  color: var(--my-conf-field-muted, #5e6b76);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

[data-my-conf-form-style] .my_conf-registration-form__actions {
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding-top: 16px;
  border-block-start: 1px solid var(--my-conf-field-line, #cbd3da);
}

[data-my-conf-form-style] .my_conf-form-button.my_conf-form-button--secondary {
  border-color: var(--my-conf-field-line, #cbd3da);
  background: #fff;
  color: var(--my-conf-field-accent-strong, #07545c);
}

[data-my-conf-form-style] .my_conf-form-button.my_conf-form-button--secondary:is(:hover, :focus-visible) {
  border-color: var(--my-conf-field-accent, #0d6771);
  background: color-mix(in srgb, var(--my-conf-field-accent, #0d6771) 7%, #fff);
}

[data-my-conf-form-style] .my_conf-newsletter-status {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 9px 11px;
  border-inline-start: 3px solid var(--my-conf-field-accent, #0d6771);
  background: var(--my-conf-field-soft, #f5f7f8);
  color: var(--my-conf-field-muted, #5e6b76);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

[data-newsletter-opt-in-field] .my_conf-newsletter-invitation-preview-button {
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
}

.my_conf-newsletter-invitation-preview .my_conf-dialog__body {
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr);
  gap: 14px;
}

.my_conf-newsletter-invitation-preview__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--my-conf-field-line, #cbd3da);
  border: 1px solid var(--my-conf-field-line, #cbd3da);
}

.my_conf-newsletter-invitation-preview__meta > div {
  min-width: 0;
  padding: 10px 12px;
  background: #fff;
}

.my_conf-newsletter-invitation-preview__meta :is(dt, dd) {
  margin: 0;
  overflow-wrap: anywhere;
}

.my_conf-newsletter-invitation-preview__meta dt {
  margin-bottom: 3px;
  color: var(--my-conf-field-muted, #5e6b76);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.my_conf-newsletter-invitation-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 1px solid var(--my-conf-field-line, #cbd3da);
  background: #f5f7f8;
}

@media (max-width: 600px) {
  .my_conf-newsletter-invitation-preview__meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

.my_conf-registration-preview {
  box-sizing: border-box;
  width: min(920px, calc(100vw - 32px));
  max-width: 920px;
  max-height: min(86vh, 900px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #8a98a4;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 24px 70px rgb(13 32 42 / 30%);
  color: #17212b;
  font-family: var(--font-family, system-ui, sans-serif);
}

.my_conf-registration-preview::backdrop {
  background: rgb(13 32 42 / 62%);
  backdrop-filter: blur(2px);
}

.my_conf-registration-preview__frame {
  display: flex;
  flex-direction: column;
  max-height: min(86vh, 900px);
  min-height: 0;
}

.my_conf-registration-preview__frame > header,
.my_conf-registration-preview__frame > footer {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-block-end: 1px solid #cbd3da;
  background: #f5f7f8;
}

.my_conf-registration-preview__frame > footer {
  justify-content: flex-end;
  border-block-start: 1px solid #cbd3da;
  border-block-end: 0;
}

.my_conf-registration-preview__frame :is(h2, h3, h4, h5, p) {
  margin: 0;
}

.my_conf-registration-preview__frame > header h2 {
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 800;
  line-height: 1.2;
}

.my_conf-registration-preview .my_conf-eyebrow {
  margin: 0 0 3px;
  color: #5e6b76;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.my_conf-registration-preview__close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid #8a98a4;
  border-radius: 0;
  background: #fff;
  color: #17212b;
  font: 400 25px/1 system-ui, sans-serif;
  cursor: pointer;
}

.my_conf-registration-preview__body {
  display: grid;
  gap: 18px;
  min-height: 0;
  padding: 20px;
  overflow: auto;
  overscroll-behavior: contain;
}

.my_conf-registration-preview__section {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.my_conf-registration-preview__section > h3 {
  padding-block-end: 8px;
  border-block-end: 2px solid #0d6771;
  color: #07545c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.my_conf-registration-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.my_conf-registration-preview__item {
  display: grid;
  align-content: start;
  gap: 3px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #d8dee3;
  background: #fff;
}

.my_conf-registration-preview__label {
  color: #5e6b76;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
}

.my_conf-registration-preview__value {
  color: #17212b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.my_conf-registration-preview__item > small,
.my_conf-registration-preview__collection > small {
  color: #5e6b76;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.my_conf-registration-preview__collection {
  display: grid;
  grid-column: 1 / -1;
  gap: 9px;
  min-width: 0;
  padding: 11px;
  border: 1px solid #cbd3da;
  background: #f5f7f8;
}

.my_conf-registration-preview__collection > h4 {
  color: #17212b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.my_conf-registration-preview__entry {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border-inline-start: 3px solid #0d6771;
  background: #fff;
}

.my_conf-registration-preview__entry > h5 {
  color: #07545c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.my_conf-registration-preview__empty {
  color: #5e6b76;
  font-size: 12px;
  font-style: italic;
}

.my_conf-registration-preview :is(.my_conf-form-button, .my_conf-form-submit) {
  min-height: 42px;
  margin: 0;
  padding: 8px 15px;
  border: 1px solid #0d6771;
  border-radius: 0;
  background: #fff;
  color: #07545c;
  font: 800 12px/1.3 system-ui, sans-serif;
  cursor: pointer;
}

@media (max-width: 600px) {
  [data-my-conf-form-style] .my_conf-registration-form__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  [data-my-conf-form-style] .my_conf-registration-form__actions > :is(button, .my_conf-form-button, .my_conf-form-submit) {
    width: 100%;
    min-width: 0;
  }

  .my_conf-registration-preview {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 16px);
  }

  .my_conf-registration-preview__frame {
    max-height: calc(100dvh - 16px);
  }

  .my_conf-registration-preview__frame > header,
  .my_conf-registration-preview__frame > footer,
  .my_conf-registration-preview__body {
    padding: 14px;
  }

  .my_conf-registration-preview__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* === Login page === */
.my_conf-login-page {
  --my-conf-login-accent: #0d6771;
  --my-conf-login-secondary: #168c99;
  --my-conf-login-border: #cbd3da;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  width: min(980px, calc(100% - 32px));
  max-width: 980px;
  margin: 36px auto;
  overflow: hidden;
  border: 1px solid var(--my-conf-login-border);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 50px rgb(17 33 43 / 12%);
  color: #17212b;
}

.my_conf-login-page,
.my_conf-login-page * {
  box-sizing: border-box;
}

.my_conf-login-page__brand,
.my_conf-login-page__panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
}

.my_conf-login-page__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline-end: 1px solid var(--my-conf-login-border);
  background:
    linear-gradient(145deg, rgb(13 103 113 / 96%), rgb(6 64 72 / 98%)),
    #0d6771;
  color: #fff;
}

.my_conf-login-page__brand h1,
.my_conf-login-page__brand h2,
.my_conf-login-page__panel h1,
.my_conf-login-page__panel h2 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  line-height: 1.15;
}

.my_conf-login-page__brand p,
.my_conf-login-page__panel > p {
  margin: 12px 0 0;
  line-height: 1.55;
}

.my_conf-login-page__logo {
  display: block;
  max-width: min(230px, 100%);
  max-height: 76px;
  margin: 0 0 24px;
  object-fit: contain;
  object-position: left center;
}

.my_conf-login-page__security {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.my_conf-login-page__security .dashicons {
  color: #fff;
}

.my_conf-login-page__security :is(small, strong) {
  display: block;
}

.my_conf-login-page__security small {
  margin-top: 3px;
  color: rgb(255 255 255 / 76%);
  line-height: 1.45;
}

.my_conf-login-page__panel {
  position: relative;
  background: #fff;
}

.my_conf-login-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 24px;
  padding-inline-end: 48px;
  border-bottom: 1px solid var(--my-conf-login-border);
}

.my_conf-login-page__tabs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: -1px;
  padding: 10px 13px;
  border: 1px solid transparent;
  border-bottom-color: var(--my-conf-login-border);
  color: #4b5964;
  font-weight: 700;
  text-decoration: none;
}

.my_conf-login-page__tabs a.is-active {
  border-color: var(--my-conf-login-border);
  border-bottom-color: #fff;
  background: #fff;
  color: var(--my-conf-login-accent);
}

.my_conf-login-page__tabs a .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
}

.my_conf-login-page__create-account {
  position: absolute;
  z-index: 2;
  inset: 26px 28px auto auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #8fa0ab;
  border-radius: 0;
  background: #fff;
  color: var(--my-conf-login-accent);
  text-decoration: none;
}

.my_conf-login-page__create-account:is(.is-active, :hover, :focus-visible) {
  border-color: var(--my-conf-login-accent);
  background: #eaf7f8;
  color: #075c66;
  outline: 0;
}

.my_conf-login-page__create-account > .dashicons {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.my_conf-login-page__create-account > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.my_conf-login-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.my_conf-login-form__check {
  width: max-content;
  max-width: 100%;
}

.my_conf-login-form__submit,
.my_conf-login-form__alternative {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.my_conf-login-form__submit {
  border: 1px solid #0c6771;
  background: var(--my-conf-login-accent);
  color: #fff;
}

.my_conf-login-form__submit:is(:hover, :focus-visible) {
  border-color: #07545c;
  background: #07545c;
}

.my_conf-login-form__alternative {
  border: 1px solid #9aa7b1;
  background: #fff;
  color: #154d57;
  font-weight: 700;
}

.my_conf-login-form__alternative:is(:hover, :focus-visible) {
  border-color: var(--my-conf-login-secondary);
  background: #eef8f9;
  color: #075c66;
}

.my_conf-login-form__notice,
.my_conf-login-page__notice {
  margin: 0;
  padding: 12px 13px;
  border: 0;
  border-inline-start: 4px solid var(--my-conf-login-accent);
  border-radius: 0;
  background: #eef8f9;
  color: #36535a;
  line-height: 1.45;
}

.my_conf-login-page__notice {
  margin-bottom: 18px;
}

.my_conf-login-page__notice--success {
  border-inline-start-color: #1f7a4d;
  background: #eff8f3;
}

.my_conf-login-page__notice--error {
  border-inline-start-color: #b32d2e;
  background: #fff1f1;
}

.my_conf-login-form__intro {
  margin: 0;
  color: #53606b;
  line-height: 1.5;
}

.my_conf-login-form--secondary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--my-conf-login-border);
}

.my_conf-external-auth {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.my_conf-external-auth__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 10px;
}

.my_conf-external-auth__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 9px 14px;
  border: 1px solid #8fa0ab;
  border-radius: 0;
  background: #fff;
  color: #22313b;
  font-weight: 750;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.my_conf-external-auth__button:is(:hover, :focus-visible) {
  border-color: var(--my-conf-login-accent, #0d6771);
  background: #f2f8f9;
  color: #075c66;
  outline: 0;
}

.my_conf-external-auth__brand {
  display: inline-grid;
  flex: 0 0 27px;
  place-items: center;
  width: 27px;
  height: 27px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.my_conf-external-auth__brand--orcid {
  border-radius: 50%;
  background: #a6ce39;
  color: #fff;
  letter-spacing: -0.04em;
}

.my_conf-external-auth__brand--linkedin {
  border-radius: 2px;
  background: #0a66c2;
  color: #fff;
  font-family: Arial, sans-serif;
}

.my_conf-external-auth__separator {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) auto minmax(18px, 1fr);
  gap: 10px;
  align-items: center;
  color: #687680;
  font-size: 12px;
  text-align: center;
}

.my_conf-external-auth__separator::before,
.my_conf-external-auth__separator::after {
  height: 1px;
  background: var(--my-conf-login-border, #cbd3da);
  content: "";
}

.my_conf-external-auth-context {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  margin: 0 0 20px;
  padding: 13px 14px;
  border-inline-start: 4px solid var(--my-conf-login-accent, #0d6771);
  background: #eef8f9;
  color: #294750;
}

.my_conf-external-auth-context > .dashicons {
  width: 22px;
  height: 22px;
  color: var(--my-conf-login-accent, #0d6771);
  font-size: 22px;
}

.my_conf-external-auth-context strong,
.my_conf-external-auth-context p {
  display: block;
  margin: 0;
}

.my_conf-external-auth-context p {
  margin-top: 4px;
  line-height: 1.45;
}

.my_conf-external-auth-context__actions {
  font-size: 13px;
}

.my_conf-external-auth-context__actions a {
  color: #075c66;
  font-weight: 700;
}

.my_conf-login-page--compact {
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
}

.my_conf-login-page--compact .my_conf-login-page__brand {
  display: none;
}

.my_conf-login-page--logged-in .my_conf-login-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

/* The signup route only changes the authentication shell's available space.
   Every field, step, validation state and mobile control remains owned by the
   shared form field/runtime system. */
[data-my-conf-registration].my_conf-login-page {
  grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1.5fr);
  width: min(1220px, calc(100% - 32px));
  max-width: 1220px;
}

[data-my-conf-registration].my_conf-login-page--compact {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

[data-my-conf-registration] .my_conf-login-page__brand {
  justify-content: flex-start;
}

[data-my-conf-registration] .my_conf-login-page__panel {
  padding: clamp(22px, 3vw, 40px);
}

@media (max-width: 782px) {
  .my_conf-login-page,
  [data-my-conf-registration].my_conf-login-page {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin: 0;
    border-inline: 0;
    box-shadow: none;
  }

  .my_conf-login-page__brand {
    padding: 22px 20px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--my-conf-login-border);
  }

  .my_conf-login-page__brand .my_conf-login-page__security {
    margin-top: 18px;
    padding-top: 18px;
  }

  .my_conf-login-page__panel,
  [data-my-conf-registration] .my_conf-login-page__panel {
    padding: 22px 16px 28px;
  }

  .my_conf-login-page h2 {
    font-size: 25px;
  }

  .my_conf-login-page__create-account {
    inset: 17px 18px auto auto;
  }
}

.my_conf-login-form__password-hint{display:block;margin:-2px 0 4px;color:var(--my-conf-public-muted,#5f6d76);font-size:13px;line-height:1.4}

/* === Post-login destination === */
html.my_conf-login-destination-open {
    overflow: hidden;
}

.my_conf-login-destination-overlay,
.my_conf-login-destination-overlay * {
    box-sizing: border-box;
    border-radius: 0;
}

.my_conf-login-destination-overlay {
    position: fixed;
    z-index: 2147483000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: rgba(5, 16, 24, .7);
    backdrop-filter: blur(7px);
}

.my_conf-login-destination-dialog {
    position: fixed;
    inset: 0;
    display: block;
    width: min(720px, calc(100% - 24px));
    max-width: none;
    max-height: calc(100dvh - 24px);
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    background: transparent;
    color: var(--my-conf-public-deep, #163047);
}

.my_conf-login-destination-dialog::backdrop {
    background: rgba(5, 16, 24, .7);
    backdrop-filter: blur(7px);
}

.my_conf-login-destination-dialog__frame {
    width: 100%;
    border-top: 6px solid var(--my-conf-public-aqua, #67d3dc);
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.my_conf-login-destination-dialog__frame > header {
    padding: clamp(20px, 4vw, 32px) clamp(18px, 4vw, 34px) 20px;
    border-bottom: 1px solid var(--my-conf-public-line, #c8d0d6);
}

.my_conf-login-destination-dialog__frame > header .my_conf-login-page__eyebrow {
    margin: 0 0 5px;
    color: var(--my-conf-public-pine, #0d6771);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.my_conf-login-destination-dialog__frame > header h2 {
    margin: 0;
    color: var(--my-conf-public-deep, #163047);
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1.08;
}

.my_conf-login-destination-dialog__frame > header p:last-child {
    margin: 9px 0 0;
    color: var(--my-conf-public-muted, #5f707c);
    line-height: 1.45;
}

.my_conf-login-destination-form {
    padding: 22px clamp(18px, 4vw, 34px) clamp(20px, 4vw, 32px);
}

.my_conf-login-destinations > button + button {
    margin-top: 10px;
}

.my_conf-login-destinations > button {
    display: flex;
    width: 100%;
    min-height: 76px;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid var(--my-conf-public-line, #c8d0d6);
    background: #fff;
    color: var(--my-conf-public-deep, #163047);
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.my_conf-login-destinations > button:focus-visible,
.my_conf-login-destinations > button:hover {
    border-color: var(--my-conf-public-pine, #0d6771);
    background: #eef8f9;
    color: var(--my-conf-public-pine, #0d6771);
    outline: 0;
}

.my_conf-login-destinations > button:focus-visible {
    box-shadow: inset 0 0 0 2px var(--my-conf-public-aqua, #67d3dc);
}

.my_conf-login-destinations > button:disabled {
    cursor: wait;
    opacity: .58;
}

.my_conf-login-destinations > button > .dashicons:first-child {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--my-conf-public-pine, #0d6771);
    color: #fff;
    font-size: 22px;
}

.my_conf-login-destinations > button > span:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
}

.my_conf-login-destinations strong,
.my_conf-login-destinations small {
    display: block;
}

.my_conf-login-destinations small {
    margin-top: 3px;
    color: #65727d;
    font-size: .82em;
    line-height: 1.35;
}

.my_conf-login-destinations > button > .dashicons:last-child {
    flex: 0 0 22px;
    color: var(--my-conf-public-pine, #0d6771);
}

.my_conf-login-destination-remember {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid var(--my-conf-public-line, #c8d0d6);
    background: #f6f8f9;
    cursor: pointer;
}

.my_conf-login-destination-remember input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
}

.my_conf-login-destination-status {
    min-height: 0;
    margin: 0;
    color: #176b57;
    font-size: .88rem;
    font-weight: 700;
}

.my_conf-login-destination-status:not(:empty) {
    margin-top: 14px;
}

.my_conf-login-destination-status.is-error {
    color: #a4262c;
}

@media (max-width: 600px) {
    .my_conf-login-destination-dialog__frame > header,
    .my_conf-login-destination-form {
        padding-right: 16px;
        padding-left: 16px;
    }

    .my_conf-login-destinations > button {
        gap: 10px;
        min-height: 72px;
        padding: 11px;
    }

    .my_conf-login-destinations > button > .dashicons:first-child {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }
}

/* === Login notices === */
[data-my-conf-login-notice-root] {
  position: fixed;
  z-index: 1000001;
  inset: 0;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 24px;
  background: rgba(9, 20, 30, 0.78);
  backdrop-filter: blur(5px);
  font-family: var(
    --font-family,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
}
[data-my-conf-login-notice-root][hidden] {
  display: none;
}
[data-my-conf-login-notice-root] > section {
  box-sizing: border-box;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--color-site-shading-color-3, #8fa4b2);
  border-top: 5px solid var(--color-site-secondary-color, #168c9a);
  background: var(--color-site-third-color, #fff);
  color: var(--color-site-primary-color, #1d2733);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}
[data-my-conf-login-notice-root] header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  border-bottom: 1px solid #d9e0e5;
}
[data-my-conf-login-notice-root] header > .dashicons {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: #e7f4f5;
  color: var(--color-site-primary-color, #087987);
  font-size: 26px;
}
[data-my-conf-login-notice-root] h2,
[data-my-conf-login-notice-root] header p {
  margin: 0;
}
[data-my-conf-login-notice-root] header p {
  color: var(--color-site-primary-color, #087987);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
[data-my-conf-login-notice-root] header h2 {
  font-family: var(--h2-font-family, inherit);
  font-size: var(--h2-font-size, 22px);
  font-weight: var(--h2-font-weight, 600);
  line-height: var(--h2-line-height, 1.25);
  letter-spacing: var(--h2-letter-spacing, normal);
}
[data-login-notice-message] {
  padding: 22px;
  color: inherit;
  font-family: var(--font-family, inherit);
  font-size: var(--font-size, 1rem);
  font-weight: var(--font-weight, 400);
  line-height: var(--line-height, 1.65);
  letter-spacing: var(--letter-spacing, normal);
}
[data-login-notice-message] > :first-child {
  margin-top: 0;
}
[data-login-notice-message] > :last-child {
  margin-bottom: 0;
}
[data-login-notice-message],
[data-my-conf-login-notice-root] footer > button,
[data-my-conf-login-notice-root] header > div {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.17s ease,
    transform 0.17s ease;
}
[data-my-conf-login-notice-root]
  section[data-transitioning]
  [data-login-notice-message],
[data-my-conf-login-notice-root] section[data-transitioning] footer > button,
[data-my-conf-login-notice-root] section[data-transitioning] header > div {
  opacity: 0;
  transform: translateY(5px);
}
[data-my-conf-login-notice-root] footer {
  display: flex;
  justify-content: flex-end;
  padding: 16px 22px;
  border-top: 1px solid var(--color-site-shading-color-2, #d9e0e5);
  background: var(--color-site-shading-color-1, #f6f8f9);
}
[data-login-notice-progress] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 0 22px 14px;
  background: var(--color-site-shading-color-1, #f6f8f9);
  color: var(--color-site-primary-color, #004761);
}
[data-login-notice-progress] > span {
  display: block;
  height: 4px;
  overflow: hidden;
  background: var(--color-site-shading-color-2, #d9e0e5);
}
[data-login-notice-progress] i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-site-secondary-color, #33adb8);
  transition: width 0.28s ease;
}
[data-login-notice-progress] small {
  font-size: 11px;
  white-space: nowrap;
}
[data-my-conf-login-notice-root] .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
[data-my-conf-login-notice-root] .button-primary {
  border-color: var(--color-site-primary-color, #004761);
  background: var(--color-site-primary-color, #004761);
  color: var(--color-site-third-color, #fff);
}
[data-my-conf-login-notice-root] .button-primary:focus,
[data-my-conf-login-notice-root] .button-primary:hover {
  border-color: var(--color-site-secondary-color, #33adb8);
  background: var(--color-site-secondary-color, #33adb8);
  color: var(--color-site-third-color, #fff);
}
@media (prefers-reduced-motion: reduce) {
  [data-login-notice-message],
  [data-login-notice-progress] i,
  [data-my-conf-login-notice-root] footer > button,
  [data-my-conf-login-notice-root] header > div {
    transition: none;
  }
}
@media (max-width: 782px) {
  [data-my-conf-login-notice-root] {
    padding: 12px;
    place-items: center;
  }
  [data-my-conf-login-notice-root] > section {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }
}

/* === Account security profile === */
body.profile-php .form-table:has(input[name="my_conf_totp_enable"]),
body.user-edit-php .form-table:has(input[name="my_conf_totp_enable"]) {
  max-width: 1080px;
  border: 1px solid #c3c4c7;
  background: #fff;
  border-collapse: collapse;
}
body.profile-php .form-table:has(input[name="my_conf_totp_enable"]) td,
body.profile-php .form-table:has(input[name="my_conf_totp_enable"]) th,
body.user-edit-php .form-table:has(input[name="my_conf_totp_enable"]) td,
body.user-edit-php .form-table:has(input[name="my_conf_totp_enable"]) th {
  padding: 18px 20px;
  border-bottom: 1px solid #dcdcde;
  vertical-align: top;
}
body.profile-php .form-table:has(input[name="my_conf_totp_enable"]) th,
body.user-edit-php .form-table:has(input[name="my_conf_totp_enable"]) th {
  width: 220px;
  background: #f6f7f7;
}
body.profile-php input[name="my_conf_totp_secret"],
body.user-edit-php input[name="my_conf_totp_secret"] {
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
body.profile-php .notice.inline,
body.user-edit-php .notice.inline {
  margin: 14px 0 0;
  border-radius: 0;
}
body.my-conf-embedded-profile {
  min-width: 0;
  background: #f6f8fa;
}
body.my-conf-embedded-profile #adminmenuback,
body.my-conf-embedded-profile #adminmenuwrap,
body.my-conf-embedded-profile #wpadminbar,
body.my-conf-embedded-profile #wpfooter,
body.my-conf-embedded-profile .update-nag {
  display: none;
}
html.wp-toolbar body.my-conf-embedded-profile {
  padding-top: 0;
}
body.my-conf-embedded-profile #wpcontent {
  margin-left: 0;
  padding: 0 22px 32px;
}
body.my-conf-embedded-profile #wpbody-content {
  padding-bottom: 0;
}
body.my-conf-embedded-profile .wrap {
  box-sizing: border-box;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 18px 0;
}
body.my-conf-embedded-profile .wrap > h1 {
  margin: 0;
  padding: 16px 20px;
  border: 1px solid #b8c6d1;
  border-bottom: 4px solid #168c9a;
  background: #fff;
  font-size: 22px;
}
body.my-conf-embedded-profile form {
  padding: 0 20px 20px;
  border: 1px solid #b8c6d1;
  border-top: 0;
  background: #fff;
}
body.my-conf-embedded-profile .form-table {
  width: 100%;
  table-layout: auto;
}
body.my-conf-embedded-profile .form-table th {
  width: 220px;
  padding-left: 0;
}
@media (max-width: 782px) {
  body.my-conf-embedded-profile #wpcontent {
    padding: 0 12px 20px;
  }
  body.my-conf-embedded-profile .wrap {
    padding-top: 12px;
  }
  body.my-conf-embedded-profile form {
    padding-inline: 14px;
  }
  body.my-conf-embedded-profile .form-table :is(tbody, tr, th, td) {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  body.my-conf-embedded-profile .form-table th {
    padding-bottom: 4px;
  }
}
.my_conf-two-factor-setup {
  box-sizing: border-box;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid #b8c6d1;
  background: #fff;
  color: #1d2733;
}
.my_conf-two-factor-setup > header {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 18px;
}
.my_conf-two-factor-setup > header > .dashicons {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: #e8f4f5;
  color: #087987;
  font-size: 25px;
}
.my_conf-two-factor-setup h2,
.my_conf-two-factor-setup h3 {
  margin: 0;
  color: #1d2733;
  line-height: 1.25;
}
.my_conf-two-factor-setup > header p {
  margin: 5px 0 0;
  color: #5b6873;
}
.my_conf-two-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.my_conf-two-factor-card {
  box-sizing: border-box;
  min-width: 0;
  padding: 16px;
  border: 1px solid #b8c6d1;
  border-top: 4px solid #9aa8b3;
  background: #f8fafb;
}
.my_conf-two-factor-card.is-ready {
  border-top-color: #168c9a;
}
.my_conf-two-factor-card > header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.my_conf-two-factor-card > header > .dashicons {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #087987;
  font-size: 24px;
}
.my_conf-two-factor-card h3 {
  font-size: 16px;
}
.my_conf-two-factor-card small {
  display: block;
  margin-top: 2px;
  color: #61707b;
  font-weight: 600;
}
.my_conf-two-factor-card p {
  margin: 0 0 14px;
  color: #53616d;
  line-height: 1.5;
}
.my_conf-totp-enrolment > div:last-child,
.my_conf-two-factor-card label {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.my_conf-two-factor-card input {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
}
.my_conf-two-factor-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
}
.my_conf-totp-enrolment {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.my_conf-totp-qr {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 140px;
  max-width: 100%;
  min-height: 140px;
  padding: 8px;
  border: 1px solid #c3cdd5;
  background: #fff;
}
.my_conf-totp-qr svg {
  display: block;
  width: 100%;
  height: auto;
}
.my_conf-totp-qr.has-qr-error {
  overflow-wrap: anywhere;
  font-size: 9px;
}
.my_conf-totp-enrolment code {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 6px;
  background: #e9edf0;
  overflow-wrap: anywhere;
  font-size: 11px;
}
.my_conf-recovery-codes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 10px;
  padding: 10px;
  border-left: 3px solid #dba617;
  background: #fff8e5;
}
.my_conf-recovery-codes code {
  display: block;
  white-space: pre-wrap;
  line-height: 1.6;
}
.my_conf-two-factor-grace {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #dba617;
  background: #fff8e5;
}
.my_conf-two-factor-grace p {
  margin: 0;
}
.my_conf-two-factor-grace__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.my_conf-two-factor-grace__actions .button {
  margin: 0;
}
.my_conf-two-factor-login-required {
  padding: 16px;
  border: 1px solid #b8c6d1;
  background: #fff;
}
.my_conf-two-factor-methods {
  display: grid;
  gap: 7px;
  margin: 12px 0;
}
.my_conf-two-factor-methods label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #c3cdd5;
  background: #f6f8fa;
  cursor: pointer;
}
.my_conf-two-factor-methods input {
  margin: 0;
}
.my_conf-profile-totp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 12px;
}
.my_conf-profile-totp > div:last-child {
  display: grid;
  gap: 8px;
}
body.login-action-my_conf_2fa_setup #login {
  width: min(1120px, calc(100% - 32px));
  padding-top: 4vh;
}
body.login-action-my_conf_2fa_setup #backtoblog,
body.login-action-my_conf_2fa_setup #nav {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
body.login-action-my_conf_2fa_setup .my_conf-two-factor-grid {
  margin: 0;
  padding: 0;
  border: 0;
  background: 0 0;
  box-shadow: none;
}
@media (max-width: 960px) {
  .my_conf-two-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 782px) {
  .my_conf-two-factor-setup {
    padding: 16px;
  }
  .my_conf-two-factor-grid,
.my_conf-totp-enrolment {
    grid-template-columns: 1fr;
  }
  .my_conf-two-factor-grace {
    align-items: flex-start;
    flex-direction: column;
  }
  .my_conf-two-factor-grace__actions {
    justify-content: flex-start;
    width: 100%;
  }
  .my_conf-profile-totp {
    flex-direction: column;
  }
}

.my_conf-student-manager-actions {
  display: inline-flex;
  gap: 6px;
  margin-left: 8px;
}

.my_conf-student-status-history {
  display: grid;
  gap: 6px;
  margin: 0;
}

.my_conf-student-status-history li {
  padding: 8px 10px;
  border-left: 3px solid #a7aaad;
  background: #f6f7f7;
}

.my_conf-account-surface .my_conf-student-status-history small,
.my_conf-student-status-history span {
  display: block;
  margin-top: 2px;
}
[data-my-conf-two-factor-modal] {
  position: fixed;
  z-index: 1000000;
  inset: 0;
  display: grid;
  box-sizing: border-box;
  place-items: center;
  padding: 24px;
  background: rgba(9, 20, 30, 0.78);
  backdrop-filter: blur(5px);
  color: var(--color-site-primary-color, #1d2733);
  font-family: var(
    --font-family,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
  font-size: var(--font-size, 1rem);
  font-weight: var(--font-weight, 400);
  line-height: var(--line-height, 1.55);
  letter-spacing: var(--letter-spacing, normal);
}
[data-my-conf-two-factor-modal] > section {
  box-sizing: border-box;
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid var(--color-site-shading-color-3, #8fa4b2);
  border-top: 5px solid var(--color-site-secondary-color, #168c9a);
  background: var(--color-site-third-color, #fff);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}
[data-my-conf-two-factor-modal] > section > header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 22px 14px;
}
[data-my-conf-two-factor-modal] > section > header > div {
  min-width: 0;
}
[data-my-conf-two-factor-modal] > section > header > [data-two-factor-cancel] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  margin-left: auto;
  padding: 6px 10px;
  color: #8a2424;
  text-decoration: none;
}
[data-my-conf-two-factor-modal] > section > header > .dashicons {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: #e7f4f5;
  color: #087987;
  font-size: 26px;
}
[data-my-conf-two-factor-modal] h2,
[data-my-conf-two-factor-modal] p {
  margin: 0;
}
[data-my-conf-two-factor-modal] > section > header p {
  margin: 0 0 3px;
  color: #087987;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
[data-my-conf-two-factor-modal] > section > header h2 {
  font-family: var(--h2-font-family, inherit);
  font-size: var(--h2-font-size, 22px);
  font-weight: var(--h2-font-weight, 600);
  line-height: var(--h2-line-height, 1.25);
  letter-spacing: var(--h2-letter-spacing, normal);
}
[data-my-conf-two-factor-modal] > section > p {
  padding: 0 22px 18px;
  color: #53616d;
  line-height: 1.55;
}
[data-my-conf-two-factor-progress] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 22px 18px;
}
[data-my-conf-two-factor-progress] > span {
  height: 4px;
  background: #dbe2e7;
}
[data-my-conf-two-factor-progress] > span[data-active="1"] {
  background: #168c9a;
}
[data-my-conf-two-factor-content] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 22px 24px;
  border-top: 1px solid var(--color-site-shading-color-2, #d9e0e5);
  background: var(--color-site-shading-color-1, #f7f9fa);
}
[data-two-factor-method-title] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
[data-two-factor-method-title] > strong {
  font-size: 18px;
}
[data-two-factor-method-title] > p {
  color: #53616d;
  line-height: 1.5;
}
[data-two-factor-methods] {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
[data-two-factor-methods] > button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  box-sizing: border-box;
  width: 100%;
  min-height: 70px;
  padding: 11px 13px;
  border: 1px solid #b7c4cd;
  background: #fff;
  color: #1d2733;
  text-align: left;
  cursor: pointer;
}
[data-two-factor-methods] > button:focus-visible,
[data-two-factor-methods] > button:hover {
  border-color: #168c9a;
  box-shadow: 0 0 0 2px rgba(22, 140, 154, 0.16);
  outline: 0;
}
[data-two-factor-methods] > button[aria-disabled="true"] {
  opacity: 0.62;
}
[data-two-factor-methods] > button > .dashicons {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #e8f4f5;
  color: #087987;
  font-size: 22px;
}
[data-two-factor-methods] > button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
[data-two-factor-methods] small {
  color: #5e6b76;
  font-weight: 400;
  line-height: 1.35;
}
[data-two-factor-methods] i {
  color: #087987;
  font-size: 25px;
  font-style: normal;
}
[data-two-factor-error] {
  padding: 10px 12px;
  border-left: 4px solid #b32d2e;
  background: #fcf0f1;
  color: #8a2424;
  font-weight: 600;
}
[data-two-factor-success] {
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 30px;
  text-align: center;
}
[data-two-factor-success] > .dashicons {
  width: 48px;
  height: 48px;
  color: #168c46;
  font-size: 48px;
}
[data-two-factor-success] > strong {
  font-size: 20px;
}
[data-two-factor-success] > small {
  color: #53616d;
}
[data-two-factor-code-form],
[data-two-factor-setup-form] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
[data-two-factor-code-form] > label:not([data-two-factor-remember]),
[data-two-factor-setup-form] > label:not([data-two-factor-remember]) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
}
[data-two-factor-code-form] input:not([type="checkbox"]),
[data-two-factor-setup-form] input:not([type="checkbox"]) {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid #8fa1ad;
  border-radius: 0;
  background: #fff;
  font-size: 18px;
}
[data-two-factor-code-form] input[inputmode="numeric"],
[data-two-factor-setup-form] input[inputmode="numeric"] {
  font-size: 22px;
  letter-spacing: 0.12em;
}
[data-two-factor-remember] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
[data-two-factor-remember] input {
  margin: 0;
}
[data-my-conf-two-factor-modal] .w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid var(--color-site-primary-color, #004761);
  font: inherit;
  text-decoration: none;
}
[data-my-conf-two-factor-modal] .us-btn-style_1 {
  background: var(--color-site-primary-color, #004761);
  color: var(--color-site-third-color, #fff);
}
[data-my-conf-two-factor-modal] .us-btn-style_2 {
  background: 0 0;
  color: var(--color-site-primary-color, #004761);
}
[data-two-factor-totp] {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
[data-two-factor-totp] > [data-my-conf-totp-qr] {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 180px;
  min-height: 180px;
  padding: 9px;
  border: 1px solid #b7c4cd;
  background: #fff;
}
[data-two-factor-totp] svg {
  display: block;
  width: 100%;
  height: auto;
}
[data-two-factor-totp] > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
[data-two-factor-totp] code {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 7px;
  background: #e9edf0;
  overflow-wrap: anywhere;
  font-size: 11px;
}
@media (max-width: 782px) {
  [data-my-conf-two-factor-modal] {
    padding: 12px;
    place-items: center;
  }
  [data-my-conf-two-factor-modal] > section {
    width: 100%;
    max-height: calc(100dvh - 24px);
  }
  [data-two-factor-totp] {
    grid-template-columns: 1fr;
  }
  [data-my-conf-two-factor-content],
  [data-my-conf-two-factor-modal] > section > header,
[data-my-conf-two-factor-modal] > section > p,
  [data-my-conf-two-factor-progress] {
    padding-inline: 16px;
  }
}
