.mvm-auth-gateway {
  background: #f7fbff;
  border: 1px solid #bfd3e5;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 55, 84, .08);
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 16px;
}
.mvm-auth-gateway__title {
  color: #17222d;
  font-size: 1rem;
  line-height: 1.3;
}
.mvm-auth-gateway__intro {
  color: #526779;
  font-size: .9rem;
  line-height: 1.5;
}
.mvm-auth-gateway__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.mvm-auth-gateway a {
  color: #1966ae;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mvm-auth-gateway__button {
  background: #1966ae;
  border-radius: 9px;
  color: #fff !important;
  min-height: 42px;
  padding: 10px 16px;
  text-decoration: none !important;
}
.mvm-auth-gateway__button:hover,
.mvm-auth-gateway__button:focus-visible {
  background: #0f4f8d;
}
.mvm-auth-gateway a:focus-visible {
  outline: 3px solid #f4c542;
  outline-offset: 3px;
}
.mvm-auth-gateway--compact .mvm-auth-gateway__intro {
  display: none;
}
html[data-mvm-theme="dark"] .mvm-auth-gateway,
body.mvm-dark .mvm-auth-gateway {
  background: #111c26;
  border-color: #31465a;
  box-shadow: none;
}
html[data-mvm-theme="dark"] .mvm-auth-gateway__title,
body.mvm-dark .mvm-auth-gateway__title {
  color: #f4f7fa;
}
html[data-mvm-theme="dark"] .mvm-auth-gateway__intro,
body.mvm-dark .mvm-auth-gateway__intro {
  color: #c7d3dd;
}
html[data-mvm-theme="dark"] .mvm-auth-gateway a,
body.mvm-dark .mvm-auth-gateway a {
  color: #8ec5f4;
}
@media (max-width: 640px) {
  .mvm-auth-gateway__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .mvm-auth-gateway__button {
    text-align: center;
  }
}
