html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

:root {
  --mmb-blue: #1f70cf;
  --mmb-blue-soft: #d8ecff;
  --mmb-ink: #202124;
  --mmb-muted: #5f6368;
  --mmb-line: #9a9a9a;
  --mmb-panel: #f3f8ff;
}

body.mmb-legacy-auth-shell {
  min-height: 100vh;
  margin: 0;
  padding: 0 0 112px;
  color: var(--mmb-ink);
  background: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mmb-app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 22px clamp(22px, 4vw, 44px) 14px;
  background: #fff;
}

.mmb-app-header-title {
  grid-column: 2;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.mmb-app-header-actions {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.mmb-app-header-actions .navbar-nav {
  flex-direction: row;
}

.mmb-app-header-actions .nav-link {
  color: var(--mmb-muted) !important;
  font-size: 0.95rem;
  padding: 0;
}

.mmb-language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  max-width: min(34vw, 260px);
  color: #516681 !important;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: right;
  text-decoration: none;
}

.mmb-language-switch img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.mmb-language-switch:hover,
.mmb-language-switch:focus-visible {
  color: #0088bd !important;
  text-decoration: underline;
}

.mmb-auth-legal-link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #61728a;
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
}

.mmb-auth-legal-link-row a {
  color: #0088bd;
  font-weight: 500;
  text-decoration: none;
}

.mmb-auth-legal-link-row a:hover,
.mmb-auth-legal-link-row a:focus-visible {
  text-decoration: underline;
}

.mmb-auth-legal-separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #9aacc0;
  flex: 0 0 auto;
}

.mmb-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 960px);
  min-height: 96px;
  transform: translateX(-50%);
  border: 2px solid var(--mmb-blue);
  background: var(--mmb-blue-soft);
  box-shadow: 0 -6px 18px rgb(0 0 0 / 8%);
}

.mmb-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 10px 8px 8px;
  color: #34495e;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.mmb-bottom-nav-item:hover,
.mmb-bottom-nav-item:focus {
  color: var(--mmb-blue);
}

.mmb-bottom-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 30px;
  color: #34495e;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.mmb-bottom-nav-item.active .mmb-bottom-nav-icon {
  border-radius: 999px;
  color: #2d4a63;
  background: #a9d7ff;
}

.mmb-auth-main {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(26px, 4vh, 72px) clamp(24px, 4vw, 40px) 0;
}

.mmb-auth-panel {
  width: min(100%, 860px);
  margin: 0 auto;
}

.mmb-brand-logo {
  display: block;
  width: min(74vw, 700px);
  height: auto;
  margin: 34px auto 76px;
}

.mmb-auth-form {
  width: min(100%, 880px);
  margin: 0 auto;
}

.mmb-auth-copy {
  max-width: 620px;
  margin: -34px auto 44px;
  color: var(--mmb-muted);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
  text-align: center;
}

.mmb-info-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -30px 0 66px;
  padding: 30px 56px;
  border: 2px solid #6b6f73;
  border-radius: 8px;
  background: var(--mmb-panel);
}

.mmb-info-teaser strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  font-weight: 400;
}

.mmb-info-teaser p {
  margin: 0;
  color: #4a4d50;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  line-height: 1.35;
}

.mmb-info-arrow {
  color: #3b3b3b;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700;
}

.mmb-field {
  position: relative;
  min-height: 94px;
  margin-bottom: 34px;
  padding: 0 52px 0 0;
  border-bottom: 2px solid var(--mmb-line);
}

.mmb-field.has-leading-icon {
  padding-left: 82px;
}

.mmb-field label {
  display: block;
  color: #3c4043;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
}

.mmb-field input,
.mmb-field select {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  color: var(--mmb-ink);
  background: transparent;
  font-size: clamp(1.2rem, 3vw, 1.95rem);
}

.mmb-field input::placeholder {
  color: transparent;
}

.mmb-field select {
  color: #111;
  font-weight: 500;
  appearance: none;
  padding-right: 42px;
}

.mmb-select-field {
  border-bottom-color: var(--mmb-blue);
}

.mmb-select-field label {
  color: var(--mmb-blue);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
}

.mmb-select-field::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  border-right: 4px solid #6b6f73;
  border-bottom: 4px solid #6b6f73;
  transform: rotate(45deg);
}

.mmb-field-clear {
  position: absolute;
  right: 12px;
  bottom: 28px;
  width: 32px;
  height: 32px;
}

.mmb-field-clear::before,
.mmb-field-clear::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: #1f1f1f;
}

.mmb-field-clear::before {
  transform: rotate(45deg);
}

.mmb-field-clear::after {
  transform: rotate(-45deg);
}

.mmb-eye-icon {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 34px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #1f1f1f;
  cursor: pointer;
}

.mmb-eye-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.mmb-eye-icon:focus-visible {
  outline: 3px solid var(--mmb-blue);
  outline-offset: 5px;
}

.mmb-password-toggle[aria-pressed="true"] {
  background: var(--mmb-blue);
}

.mmb-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 34px 8px;
  color: var(--mmb-ink);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
}

.mmb-switch-row input,
.mmb-check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mmb-switch-ui {
  position: relative;
  width: 96px;
  height: 56px;
  border: 4px solid #999;
  border-radius: 999px;
  background: #f3f3f3;
  flex: 0 0 auto;
}

.mmb-switch-ui::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #9c9c9c;
  transition: transform 160ms ease, background 160ms ease;
}

.mmb-switch-row input:checked + .mmb-switch-ui {
  border-color: var(--mmb-blue);
}

.mmb-switch-row input:checked + .mmb-switch-ui::after {
  transform: translateX(38px);
  background: var(--mmb-blue);
}

.mmb-check-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 36px 28px 10px;
  color: var(--mmb-ink);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.mmb-check-ui {
  position: relative;
  width: 42px;
  height: 42px;
  border: 4px solid #444;
  border-radius: 4px;
  background: #fff;
  flex: 0 0 auto;
}

.mmb-check-row input:checked + .mmb-check-ui {
  border-color: var(--mmb-blue);
  background: var(--mmb-blue);
}

.mmb-check-row input:checked + .mmb-check-ui::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 14px;
  height: 24px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
}

.mmb-primary-button {
  display: block;
  width: min(100%, 520px);
  min-height: 74px;
  margin: 52px auto 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--mmb-blue);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.mmb-centered-link,
.mmb-legal-links {
  margin: 38px 0 0;
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.mmb-centered-link a,
.mmb-legal-links a {
  color: var(--mmb-blue);
  text-decoration: none;
}

.mmb-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.mmb-validation-summary,
.mmb-field-error,
.mmb-check-error {
  color: #b00020;
  font-size: 1rem;
}

.mmb-validation-summary ul {
  margin-bottom: 20px;
}

.mmb-message-panel {
  max-width: 660px;
  margin: -24px auto 0;
  padding: 34px 42px;
  border: 2px solid #d7dce1;
  border-radius: 8px;
  background: var(--mmb-panel);
  color: var(--mmb-ink);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.45;
}

.mmb-message-panel p {
  margin: 0;
}

body.mmb-manage-shell {
  min-height: 100vh;
  background: #fff;
  color: #18253a;
}

.mmb-manage-shell .mmb-manage-app-header {
  min-height: 44px;
  padding: 10px 20px;
  background: #eef3f8;
  box-shadow: 0 2px 7px rgb(24 37 58 / 16%);
}

.mmb-manage-shell .mmb-app-header-title {
  width: 100%;
  color: #18253a;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.mmb-manage-main {
  width: min(100%, 414px);
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.mmb-manage-layout {
  width: 100%;
  margin: 0 auto;
}

.mmb-manage-brand {
  display: flex;
  justify-content: center;
  margin: 10px auto 22px;
}

.mmb-manage-logo {
  width: min(100%, 250px);
  height: auto;
}

.mmb-manage-content {
  width: 100%;
}

.mmb-manage-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 8px;
  width: 100%;
  margin: 0 0 22px;
  padding: 0 0 12px;
  border-bottom: 1px solid #e4ebf2;
  list-style: none;
}

.row > .col-lg-3:has(> .mmb-manage-menu) {
  flex: 0 0 100%;
  max-width: 100%;
}

.row > .col-lg-3:has(> .mmb-manage-menu) + .col-lg-9 {
  flex: 0 0 100%;
  max-width: 100%;
}

.mmb-manage-menu li {
  margin: 0;
  padding: 0;
}

.mmb-manage-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 7px 18px;
  border: 1px solid #dce6ef;
  border-radius: 10px;
  background: #fbfdff;
  color: #2e435a;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mmb-manage-menu-link img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.8;
}

.mmb-manage-menu-link:hover,
.mmb-manage-menu-link:focus-visible {
  border-color: #b9d8ed;
  background: #eef7fd;
  color: #1a7196;
  text-decoration: none;
}

.mmb-manage-menu-link:focus-visible {
  outline: 2px solid #1c8db5;
  outline-offset: 2px;
}

.mmb-manage-menu-link.active {
  border-color: #1c8db5;
  background: #1c8db5;
  color: #fff;
  box-shadow: 0 6px 12px rgb(28 141 181 / 18%);
}

.mmb-manage-menu-link.active img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.mmb-manage-email-panel {
  width: 100%;
  margin: 0;
}

.mmb-manage-page-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
}

.mmb-manage-page-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mmb-manage-page-title h1 {
  margin: 0;
  color: #1d2b3d;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.mmb-manage-email-form {
  width: 100%;
}

.mmb-manage-email-form .mmb-validation-summary {
  display: block;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid #f0b8bf;
  border-radius: 12px;
  background: #fff2f3;
  color: #a52735;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.mmb-manage-email-form .mmb-validation-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmb-manage-email-form .mmb-validation-summary li {
  margin: 0;
}

.mmb-manage-readonly-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2ebf4;
  background: #eef3f9;
  color: #1d2b3d;
}

.mmb-manage-readonly-field span,
.mmb-manage-field label {
  margin: 0 0 8px;
  color: #71839c;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.mmb-manage-readonly-field strong {
  color: #1d2b3d;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.mmb-manage-field {
  margin: 0 0 18px;
}

.mmb-manage-field label {
  display: block;
  text-transform: uppercase;
}

.mmb-manage-field input {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d6e3f0;
  border-radius: 10px;
  outline: 0;
  background: #fbfdff;
  color: #25364a;
  font-size: 0.88rem;
}

.mmb-manage-field input:focus {
  border-color: #1c8db5;
  box-shadow: 0 0 0 3px rgb(28 141 181 / 14%);
}

.mmb-manage-field .mmb-field-error {
  display: block;
  margin-top: 5px;
  color: #b00020;
  font-size: 0.74rem;
}

.mmb-profile-locale-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 22px;
  margin: -4px 0 16px;
  color: #5d7088;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.mmb-profile-locale-status[hidden] {
  display: none;
}

.mmb-profile-locale-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #d6e3f0;
  border-top-color: #1c8db5;
  border-radius: 999px;
  animation: mmb-profile-locale-spin 0.75s linear infinite;
}

.mmb-profile-locale-form-loading .mmb-register-select-shell {
  background: #f5f9fd;
}

.mmb-profile-locale-form-loading select,
.mmb-profile-locale-form-loading .mmb-manage-primary-button {
  cursor: progress;
}

.mmb-manage-primary-button:disabled {
  opacity: 0.72;
  box-shadow: none;
}

@keyframes mmb-profile-locale-spin {
  to {
    transform: rotate(360deg);
  }
}

.mmb-manage-primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #1c8db5;
  box-shadow: 0 9px 17px rgb(28 141 181 / 24%);
  font-size: 0.88rem;
  font-weight: 700;
}

.mmb-manage-primary-button:hover,
.mmb-manage-primary-button:focus-visible {
  background: #147fa5;
}

.mmb-manage-page-footer {
  display: flex;
  justify-content: center;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid #edf2f7;
}

.mmb-manage-global-footer {
  display: flex;
  justify-content: center;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid #edf2f7;
}

.mmb-manage-imprint-link {
  margin: 22px 0 0;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.2;
}

.mmb-manage-imprint-link a {
  color: #0088bd;
  font-weight: 500;
  text-decoration: none;
}

.mmb-manage-imprint-link a:hover,
.mmb-manage-imprint-link a:focus-visible {
  text-decoration: underline;
}

.mmb-manage-logout-button {
  min-width: 96px;
  min-height: 32px;
  padding: 6px 18px;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  background: #fff;
  color: #2e435a;
  box-shadow: 0 2px 6px rgb(29 43 61 / 8%);
  font-size: 0.8rem;
  font-weight: 500;
}

.mmb-manage-logout-button:hover,
.mmb-manage-logout-button:focus-visible {
  border-color: #b9d8ed;
  color: #1a7196;
}

.mmb-manage-delete-panel {
  width: min(100%, 356px);
}

.mmb-manage-delete-warning {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 0 0 18px;
  padding: 16px 14px;
  border: 1px solid #ffd4d8;
  border-radius: 14px;
  background: #fff7f8;
  color: #1d2b3d;
}

.mmb-manage-delete-warning img {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  object-fit: contain;
}

.mmb-manage-delete-warning strong {
  display: block;
  margin: 0 0 4px;
  color: #f00012;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.mmb-manage-delete-warning p {
  margin: 0;
  color: #1d2b3d;
  font-size: 0.78rem;
  line-height: 1.45;
}

.mmb-manage-delete-confirm {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 0 20px;
  padding: 17px 16px;
  border: 1px solid #1d2b3d;
  border-radius: 14px;
  background: #f8fbff;
  color: #1d2b3d;
  font-size: 0.78rem;
  line-height: 1.35;
  cursor: pointer;
}

.mmb-manage-delete-confirm input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #0d6efd;
}

.mmb-manage-danger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin: 0;
  border: 0;
  border-radius: 9px;
  background: #f00012;
  color: #fff;
  box-shadow: 0 8px 16px rgb(240 0 18 / 18%);
  font-size: 0.78rem;
  font-weight: 800;
}

.mmb-manage-danger-button:hover,
.mmb-manage-danger-button:focus-visible {
  background: #d60010;
}

.mmb-manage-warning-text {
  margin: 0 0 20px;
  color: #1d2b3d;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mmb-manage-content .form-floating {
  margin-bottom: 18px;
}

.mmb-manage-content .form-control {
  min-height: 40px;
  border: 1px solid #d6e3f0;
  border-radius: 10px;
  background: #fbfdff;
  color: #25364a;
  font-size: 0.88rem;
}

.mmb-manage-content .form-control:focus {
  border-color: #1c8db5;
  box-shadow: 0 0 0 3px rgb(28 141 181 / 14%);
}

.mmb-manage-content .btn-primary {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #1c8db5;
  box-shadow: 0 9px 17px rgb(28 141 181 / 24%);
  font-size: 0.88rem;
  font-weight: 700;
}

.mmb-manage-content .btn-primary:hover,
.mmb-manage-content .btn-primary:focus-visible {
  background: #147fa5;
}

@media (min-width: 900px) {
  body.mmb-legacy-auth-shell {
    background: #fff;
  }

  .mmb-auth-main {
    padding-top: 28px;
  }

  .mmb-auth-panel {
    max-width: 760px;
  }

  .mmb-brand-logo {
    margin-top: 20px;
    margin-bottom: 56px;
  }
}

@media (max-width: 560px) {
  .mmb-app-header {
    min-height: 76px;
    padding: 18px 22px 10px;
  }

  .mmb-app-header-title {
    font-size: 2rem;
  }

  .mmb-app-header-actions {
    gap: 10px;
  }

  .mmb-app-header-actions .nav-link {
    font-size: 0.82rem;
  }

  body.mmb-legacy-auth-shell {
    padding-bottom: 94px;
  }

  .mmb-bottom-nav {
    min-height: 86px;
  }

  .mmb-bottom-nav-item {
    padding-inline: 4px;
    font-size: 0.9rem;
  }

  .mmb-bottom-nav-icon {
    min-width: 44px;
    min-height: 26px;
    font-size: 1.35rem;
  }

  .mmb-brand-logo {
    width: 86vw;
    margin: 28px auto 56px;
  }

  .mmb-info-teaser {
    padding: 20px 26px;
    margin-bottom: 46px;
  }

  .mmb-field {
    min-height: 82px;
    margin-bottom: 26px;
  }

  .mmb-field.has-leading-icon {
    padding-left: 58px;
  }

  .mmb-eye-icon {
    left: 12px;
  }

  .mmb-primary-button {
    min-height: 64px;
  }
}

body.mmb-login-shell {
  min-height: 100vh;
  padding-bottom: 0;
  background: #fff;
  color: #1d2b3d;
}

body.mmb-register-shell {
  min-height: 100vh;
  background: #fff;
  color: #1d2b3d;
}

body.mmb-forgot-password-shell {
  min-height: 100vh;
  padding-bottom: 0;
  background: #fff;
  color: #1d2b3d;
}

body.mmb-legal-shell {
  min-height: 100vh;
  padding-bottom: 0;
  background: #fff;
  color: #1d2b3d;
}

.mmb-login-shell .mmb-app-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 58px;
  padding: 16px 18px 14px;
  background: #eef3f8;
  box-shadow: 0 2px 8px rgb(28 47 68 / 12%);
}

.mmb-login-shell .mmb-app-header-title {
  color: #1c2b3d;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mmb-register-shell .mmb-app-header {
  min-height: 58px;
  padding: 16px 18px 14px;
  background: #eef3f8;
  box-shadow: 0 2px 8px rgb(28 47 68 / 12%);
}

.mmb-register-shell .mmb-app-header-title {
  color: #1c2b3d;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mmb-confirmation-shell .mmb-app-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 58px;
  padding: 16px 18px 14px;
  background: #eef3f8;
  box-shadow: 0 2px 8px rgb(28 47 68 / 12%);
}

.mmb-confirmation-shell .mmb-app-header-title {
  color: #1c2b3d;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mmb-forgot-password-shell .mmb-app-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 58px;
  padding: 18px 18px 14px;
  background: #eef3f8;
  box-shadow: 0 2px 8px rgb(28 47 68 / 12%);
}

.mmb-forgot-password-shell .mmb-app-header-title {
  color: #1c2b3d;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mmb-legal-shell .mmb-app-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 58px;
  padding: 16px 18px 14px;
  background: #eef3f8;
  box-shadow: 0 2px 8px rgb(28 47 68 / 12%);
}

.mmb-legal-shell .mmb-app-header-title {
  color: #1c2b3d;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.mmb-login-shell .mmb-auth-main {
  width: min(100%, 414px);
  padding: 28px 16px 28px;
}

.mmb-forgot-password-shell .mmb-auth-main {
  width: min(100%, 414px);
  padding: 26px 22px 28px;
}

.mmb-reset-password-shell .mmb-auth-main {
  width: min(100%, 414px);
  padding: 26px 22px 28px;
}

.mmb-confirmation-shell .mmb-auth-main {
  width: min(100%, 414px);
  padding: 28px 16px 36px;
}

.mmb-register-shell .mmb-auth-main {
  width: min(100%, 414px);
  padding: 28px 18px 40px;
}

.mmb-legal-shell .mmb-auth-main {
  width: min(100%, 980px);
  padding: 28px clamp(16px, 4vw, 42px) 42px;
}

.mmb-login-panel,
.mmb-login-form {
  width: 100%;
  margin: 0 auto;
}

.mmb-register-panel,
.mmb-register-form {
  width: 100%;
  margin: 0 auto;
}

.mmb-forgot-password-panel,
.mmb-forgot-password-form {
  width: 100%;
  margin: 0 auto;
}

.mmb-reset-password-panel,
.mmb-reset-password-form {
  width: 100%;
  margin: 0 auto;
}

.mmb-confirmation-panel {
  width: 100%;
  margin: 0 auto;
}

.mmb-forgot-password-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.mmb-reset-password-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.mmb-forgot-password-logo {
  width: min(100%, 250px);
  height: auto;
  margin: 22px auto 28px;
}

.mmb-reset-password-logo {
  width: min(100%, 250px);
  height: auto;
  margin: 22px auto 28px;
}

.mmb-confirmation-brand {
  display: flex;
  justify-content: center;
  margin: 34px auto 30px;
}

.mmb-confirmation-logo {
  width: min(100%, 250px);
  height: auto;
}

.mmb-forgot-password-heading h1 {
  margin: 0 0 10px;
  color: #18253a;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.mmb-forgot-password-heading p {
  width: min(100%, 340px);
  margin: 0 auto;
  color: #18253a;
  font-size: 0.72rem;
  line-height: 1.45;
}

.mmb-reset-password-heading p {
  width: min(100%, 340px);
  margin: 0 auto;
  color: #18253a;
  font-size: 0.72rem;
  line-height: 1.45;
}

.mmb-confirmation-message-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 18px;
  border: 1px solid #dce6ef;
  border-radius: 14px;
  background: #fbfdff;
  color: #1d2b3d;
  box-shadow: 0 8px 22px rgb(29 43 61 / 6%);
  text-align: center;
}

.mmb-confirmation-message-panel p {
  width: min(100%, 330px);
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.mmb-confirmation-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 42px;
  margin: 26px auto 0;
  border: 1px solid #dce6ef;
  border-radius: 10px;
  background: #fff;
  color: #1d2b3d;
  box-shadow: 0 3px 9px rgb(28 47 68 / 10%);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.mmb-confirmation-action-button:hover,
.mmb-confirmation-action-button:focus-visible {
  color: #0088bd;
  border-color: #b9d8ed;
  text-decoration: none;
}

.mmb-login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 34px auto 34px;
}

.mmb-login-logo {
  width: min(100%, 250px);
  height: auto;
}

.mmb-legal-panel {
  width: 100%;
  margin: 0 auto;
}

.mmb-legal-brand {
  display: flex;
  justify-content: center;
  margin: 34px auto 18px;
}

.mmb-legal-logo {
  width: min(100%, 250px);
  height: auto;
}

.mmb-legal-content {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid #dce6ef;
  border-radius: 12px;
  background: #fbfdff;
  color: #1d2b3d;
}

.mmb-legal-content h1 {
  margin: 0 0 14px;
  color: #18253a;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.mmb-legal-content p {
  margin: 0;
  color: #43546b;
  font-size: 0.82rem;
  line-height: 1.55;
  white-space: pre-line;
}

.mmb-legal-document-text {
  color: #43546b;
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  line-height: 1.75;
  overflow-wrap: break-word;
}

.mmb-legal-document-text h1 {
  margin: 0 0 8px;
  color: #18253a;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
}

.mmb-legal-document-text h2 {
  margin: 28px 0 10px;
  color: #18253a;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.3;
}

.mmb-legal-document-text p {
  margin: 0 0 14px;
  color: #43546b;
}

.mmb-legal-document-text .mmb-legal-document-meta {
  margin: 0 0 24px;
  color: #6b7f99;
  font-size: 0.85rem;
  font-weight: 700;
}

body.mmb-legal-modal-document {
  margin: 0;
  background: #fff;
  color: #1d2b3d;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.mmb-legal-modal-document .mmb-legal-content {
  min-height: 100vh;
  padding: clamp(18px, 4vw, 30px);
  border: 0;
  border-radius: 0;
  background: #fff;
}

.mmb-legal-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 42px;
  margin: 26px auto 0;
  border: 1px solid #dce6ef;
  border-radius: 10px;
  background: #fff;
  color: #1d2b3d;
  box-shadow: 0 3px 9px rgb(28 47 68 / 10%);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.mmb-legal-back-button-top {
  margin-top: 0;
  margin-bottom: 22px;
}

.mmb-legal-back-button:hover,
.mmb-legal-back-button:focus-visible {
  color: #0088bd;
  border-color: #b9d8ed;
}

.mmb-register-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px auto 22px;
  text-align: center;
}

.mmb-register-logo {
  width: min(100%, 250px);
  height: auto;
  margin-bottom: 0;
}

.mmb-register-brand h1 {
  margin: 0;
  color: #1d2b3d;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
}

.mmb-register-brand p {
  margin: 4px 0 0;
  color: #2a9ac4;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.mmb-register-info-card {
  min-height: 68px;
  margin: 0 0 22px;
  padding: 0;
  border: 1px solid #d9eaf6;
  border-radius: 16px;
  background: #f9fcff;
  box-shadow: 0 2px 10px rgb(28 141 181 / 6%);
  overflow: hidden;
}

.mmb-register-info-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

.mmb-register-info-summary::-webkit-details-marker {
  display: none;
}

.mmb-register-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #e1f1fb;
  flex: 0 0 auto;
}

.mmb-register-info-icon img {
  width: 20px;
  height: 20px;
}

.mmb-register-info-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.mmb-register-info-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #1d2b3d;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.mmb-register-info-copy span {
  display: block;
  margin: 0;
  overflow: hidden;
  color: #516681;
  font-size: 0.76rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mmb-register-info-chevron {
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-right: 1.5px solid #8aa0bb;
  border-bottom: 1.5px solid #8aa0bb;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

.mmb-register-info-card[open] .mmb-register-info-chevron {
  transform: translateY(3px) rotate(225deg);
}

.mmb-register-info-details {
  padding: 4px 16px 18px;
  color: #1d2b3d;
  font-size: 0.78rem;
  line-height: 1.35;
}

.mmb-register-benefit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmb-register-benefit-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.mmb-register-benefit-check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 999px;
  background: #bff5d3;
  flex: 0 0 auto;
}

.mmb-register-benefit-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 9px;
  border-right: 1.5px solid #269b58;
  border-bottom: 1.5px solid #269b58;
  transform: rotate(45deg);
}

.mmb-register-benefit-list strong {
  display: block;
  margin: 0 0 3px;
  color: #18253a;
  font-size: 0.8rem;
  font-weight: 800;
}

.mmb-register-benefit-list small {
  display: block;
  color: #516681;
  font-size: 0.74rem;
  line-height: 1.45;
}

.mmb-login-field {
  margin-bottom: 20px;
}

.mmb-login-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  color: #516681;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mmb-login-field-label img {
  width: 13px;
  height: 13px;
  opacity: 0.9;
}

.mmb-login-field-label label {
  margin: 0;
}

.mmb-login-input-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  background: #fbfdff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 70%);
}

.mmb-login-input-shell:focus-within {
  border-color: #1c8db5;
  box-shadow: 0 0 0 3px rgb(28 141 181 / 14%);
}

.mmb-login-input-shell input {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: #25364a;
  background: transparent;
  font-size: 0.88rem;
}

.mmb-login-input-shell input::placeholder {
  color: #8aa0bb;
  opacity: 1;
}

.mmb-login-input-shell select {
  width: 100%;
  min-height: 38px;
  padding: 0 44px 0 14px;
  border: 0;
  outline: 0;
  appearance: none;
  color: #25364a;
  background: transparent;
  font-size: 0.88rem;
}

.mmb-login-input-shell.has-clear-button input {
  padding-right: 42px;
}

.mmb-login-input-shell.has-password-toggle input {
  padding-left: 14px;
  padding-right: 72px;
}

.mmb-forgot-password-input-shell.has-leading-field-icon input {
  padding-left: 40px;
}

.mmb-forgot-password-input-icon {
  position: absolute;
  left: 13px;
  width: 15px;
  height: 15px;
  opacity: 0.68;
  pointer-events: none;
}

.mmb-register-select-shell::after {
  content: "";
  position: absolute;
  right: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #516681;
  border-bottom: 2px solid #516681;
  transform: rotate(45deg);
}

.mmb-login-eye-button {
  position: absolute;
  right: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.mmb-login-eye-button img {
  width: 15px;
  height: 15px;
  opacity: 0.62;
}

.mmb-login-eye-button:hover img,
.mmb-login-eye-button:focus-visible img,
.mmb-login-eye-button[aria-pressed="true"] img {
  opacity: 1;
}

.mmb-login-eye-button:focus-visible {
  outline: 2px solid #1c8db5;
  outline-offset: 2px;
}

.mmb-login-clear-button {
  position: absolute;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.mmb-login-clear-button[hidden] {
  display: none;
}

.mmb-login-clear-button::before,
.mmb-login-clear-button::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #7e91aa;
}

.mmb-login-clear-button::before {
  transform: rotate(45deg);
}

.mmb-login-clear-button::after {
  transform: rotate(-45deg);
}

.mmb-login-clear-button:hover::before,
.mmb-login-clear-button:hover::after,
.mmb-login-clear-button:focus-visible::before,
.mmb-login-clear-button:focus-visible::after {
  background: #25364a;
}

.mmb-login-clear-button:focus-visible {
  outline: 2px solid #1c8db5;
  outline-offset: 2px;
}

.mmb-login-switch-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  margin: 24px 0 26px;
  padding: 0 14px;
  border: 1px solid #edf1f6;
  border-radius: 16px;
  background: #fff;
  color: #374a61;
  font-size: 0.84rem;
  box-shadow: 0 8px 20px rgb(25 45 70 / 5%);
}

.mmb-login-switch-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mmb-login-switch-row .mmb-switch-ui {
  width: 44px;
  height: 28px;
  border: 0;
  background: #e2e9f1;
  box-shadow: inset 0 1px 2px rgb(40 60 80 / 10%);
}

.mmb-login-switch-row .mmb-switch-ui::after {
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgb(36 57 76 / 18%);
}

.mmb-login-switch-row input:checked + .mmb-switch-ui {
  background: #1c8db5;
}

.mmb-login-switch-row input:checked + .mmb-switch-ui::after {
  transform: translateX(16px);
  background: #fff;
}

.mmb-login-form .mmb-centered-link {
  margin: 0 0 24px;
  font-size: 0.84rem;
}

.mmb-login-form .mmb-centered-link a,
.mmb-login-register-prompt a,
.mmb-login-imprint-link a {
  color: #0088bd;
  font-weight: 500;
  text-decoration: none;
}

.mmb-login-form .mmb-centered-link a:hover,
.mmb-login-register-prompt a:hover,
.mmb-login-imprint-link a:hover {
  text-decoration: underline;
}

.mmb-login-primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #1c8db5;
  box-shadow: 0 8px 16px rgb(28 141 181 / 24%);
  font-size: 0.88rem;
  font-weight: 700;
}

.mmb-login-submit-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.mmb-forgot-password-submit {
  min-height: 44px;
  margin-top: 28px;
}

.mmb-forgot-password-back-link {
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid #edf2f7;
  text-align: center;
  font-size: 0.78rem;
}

.mmb-forgot-password-back-link a {
  color: #1d2b3d;
  font-weight: 500;
  text-decoration: none;
}

.mmb-forgot-password-back-link a:hover,
.mmb-forgot-password-back-link a:focus-visible {
  color: #0088bd;
  text-decoration: underline;
}

.mmb-login-primary-button:hover,
.mmb-login-primary-button:focus-visible {
  background: #147fa5;
}

.mmb-login-register-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 50px;
  margin: 30px 0 18px;
  padding: 12px;
  border-radius: 0 0 14px 14px;
  background: #f8fafc;
  color: #61728a;
  font-size: 0.76rem;
  text-align: center;
}

.mmb-login-imprint-link {
  margin: 0;
  text-align: center;
  font-size: 0.7rem;
}

.mmb-login-form .mmb-field-error,
.mmb-register-form .mmb-field-error,
.mmb-forgot-password-form .mmb-field-error {
  display: block;
  margin-top: 5px;
  color: #b00020;
  font-size: 0.74rem;
}

.mmb-login-form .mmb-validation-summary,
.mmb-register-form .mmb-validation-summary,
.mmb-forgot-password-form .mmb-validation-summary {
  display: block;
  margin: 0 0 18px;
  padding: 12px 18px;
  border: 1px solid #f0b8bf;
  border-radius: 12px;
  background: #fff2f3;
  color: #a52735;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.mmb-login-form .mmb-validation-summary ul,
.mmb-register-form .mmb-validation-summary ul,
.mmb-forgot-password-form .mmb-validation-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mmb-login-form .mmb-validation-summary li,
.mmb-register-form .mmb-validation-summary li,
.mmb-forgot-password-form .mmb-validation-summary li {
  margin: 0;
}

.mmb-register-check-row {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 14px 0 0;
  color: #26374a;
  font-size: 0.73rem;
  line-height: 1.28;
}

.mmb-register-check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mmb-register-check-ui {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid #c9d8e7;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 80%);
}

.mmb-register-check-row input:focus-visible + .mmb-register-check-ui {
  outline: 2px solid #1c8db5;
  outline-offset: 2px;
}

.mmb-register-check-row input:checked + .mmb-register-check-ui {
  border-color: #1c8db5;
  background: #1c8db5;
}

.mmb-register-check-row input:checked + .mmb-register-check-ui::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.mmb-register-legal-link {
  color: #0088bd;
  font-weight: 700;
  text-decoration: none;
}

.mmb-register-legal-link:hover,
.mmb-register-legal-link:focus-visible {
  color: #006f99;
  text-decoration: underline;
}

.mmb-register-legal-link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #1c8db5;
  outline-offset: 2px;
}

.mmb-register-form .mmb-check-error {
  margin-left: 32px;
}

.mmb-register-password-hint {
  display: block;
  margin-top: 5px;
  color: #61728a;
  font-size: 0.72rem;
  line-height: 1.3;
}

.mmb-register-primary-button {
  width: 100%;
  margin-top: 20px;
}

.mmb-register-login-prompt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 50px;
  margin: 30px 0 18px;
  padding: 12px;
  border-radius: 0 0 14px 14px;
  background: #f8fafc;
  color: #61728a;
  font-size: 0.76rem;
  text-align: center;
}

.mmb-register-login-prompt a,
.mmb-register-imprint-link a {
  color: #0088bd;
  font-weight: 600;
  text-decoration: none;
}

.mmb-register-login-prompt a:hover,
.mmb-register-login-prompt a:focus-visible,
.mmb-register-imprint-link a:hover,
.mmb-register-imprint-link a:focus-visible {
  text-decoration: underline;
}

.mmb-register-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  color: #516681;
  font-size: 0.76rem;
}

.mmb-register-legal-links a {
  color: #0075b4;
  font-weight: 600;
  text-decoration: none;
}

.mmb-register-legal-links a:hover,
.mmb-register-legal-links a:focus {
  text-decoration: underline;
}

.mmb-register-imprint-link {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.7rem;
}

body.mmb-legal-modal-open {
  overflow: hidden;
}

.mmb-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.mmb-legal-modal[hidden] {
  display: none;
}

.mmb-legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(21 39 58 / 45%);
  backdrop-filter: blur(2px);
}

.mmb-legal-modal-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 720px);
  height: min(82vh, 760px);
  overflow: hidden;
  border: 1px solid #d8e6f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 54px rgb(15 37 59 / 26%);
}

.mmb-legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #e5eef6;
  background: #f6f9fc;
}

.mmb-legal-modal-header h2 {
  margin: 0;
  color: #18253a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.mmb-legal-modal-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid #d4e3f0;
  border-radius: 999px;
  background: #fff;
  color: #1d2b3d;
  box-shadow: 0 2px 8px rgb(28 47 68 / 10%);
  font-size: 1.35rem;
  line-height: 1;
}

.mmb-legal-modal-close-button:hover,
.mmb-legal-modal-close-button:focus-visible {
  color: #0088bd;
  border-color: #b9d8ed;
  outline: none;
}

.mmb-legal-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 430px) {
  .mmb-login-shell .mmb-auth-main {
    padding-inline: 16px;
  }
}
