.ob-account-wrapper {
  padding-bottom: 10px;
}

.ob-account-form-group,
.ob-account-note {
  margin: 0 12px;
}

.ob-account-action-wide {
  width: 80%;
}

.ob-account-panel {
  clear: both;
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0;
}

.ob-account-panel-body {
  padding: 10px;
  border: 1px solid rgb(226 232 240 / 82%);
  border-radius: var(--ob-radius-card, 8px);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 96%) 0%, rgb(248 251 255 / 92%) 100%),
    var(--ob-bg-washi, #fff);
  color: inherit;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 90%);
}

.ob-account-panel-heading {
  min-height: 48px;
  margin-bottom: 0;
  padding: 14px 15px 7px;
  border: 1px solid rgb(226 232 240 / 82%);
  border-bottom: 0;
  border-radius: var(--ob-radius-card, 8px) var(--ob-radius-card, 8px) 0 0;
  background: rgb(255 255 255 / 96%);
}

.ob-account-panel-tools {
  display: inline-flex;
  float: right;
  align-items: center;
  gap: 8px;
}

.ob-account-icon-preview {
  margin-top: 20px;
}

.ob-account-icon-muted {
  color: #e5e5e5;
  font-size: 180px;
}

.registration-logo-wrap {
  text-align: center;
}

.registration-logo-wrap img {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.registration-submit-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 86%);
}

.registration-submit-overlay.is-active {
  display: flex;
}

.registration-submit-box {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.registration-submit-spinner {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border: 10px solid #d9e4df;
  border-top-color: var(--ob-color-green-light, #1ab394);
  border-radius: 50%;
  animation: registration-spin 0.8s linear infinite;
}

body.registration-submitting .wizard > .actions a {
  opacity: 0.55;
  pointer-events: none;
}

@keyframes registration-spin {
  to {
    transform: rotate(360deg);
  }
}
