html.auth-pending body {
  visibility: hidden;
}

.comiprep-account {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-left: 10px;
  border-left: 1px solid #ddd3c5;
}

.comiprep-account-meta {
  min-width: 0;
  text-align: right;
  line-height: 1.25;
}

.comiprep-account-meta strong,
.comiprep-account-meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comiprep-account-meta strong {
  max-width: 150px;
  color: #161824;
  font-size: 12px;
}

.comiprep-account-meta span {
  max-width: 150px;
  color: #737685;
  font-size: 10px;
}

.comiprep-account-button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #ddd3c5;
  border-radius: 5px;
  color: #34384a;
  background: #fffdf8;
  font-size: 11px;
  font-weight: 800;
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.comiprep-account-button:hover {
  border-color: #ff1493;
  color: #c00070;
  background: #ffe1f1;
}

.comiprep-password-dialog {
  width: min(440px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: #161824;
  background: #fffdf8;
  box-shadow: 0 24px 80px rgba(22, 24, 36, .28);
}

.comiprep-password-dialog::backdrop {
  background: rgba(22, 24, 36, .55);
  backdrop-filter: blur(3px);
}

.comiprep-password-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.comiprep-password-head h2,
.comiprep-password-head p {
  margin: 0;
}

.comiprep-password-head h2 {
  font-size: 22px;
}

.comiprep-password-head p {
  margin-top: 6px;
  color: #737685;
  font-size: 13px;
}

.comiprep-password-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.comiprep-password-form input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0 12px;
  border: 1px solid #d9d2c7;
  border-radius: 9px;
  color: #161824;
  background: #fff;
  font: inherit;
}

.comiprep-password-form input:focus {
  border-color: #ff1493;
  outline: 3px solid rgba(255, 20, 147, .13);
}

.comiprep-password-form small {
  color: #737685;
  font-size: 11px;
  font-weight: 600;
}

.comiprep-password-message {
  min-height: 18px;
  margin: 0;
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

.comiprep-password-message.ok {
  color: #067647;
}

.comiprep-password-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.comiprep-password-actions button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #d9d2c7;
  border-radius: 9px;
  color: #34384a;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.comiprep-password-actions button.primary {
  border-color: #ff1493;
  color: #fff;
  background: #ff1493;
}

.comiprep-password-actions button:disabled {
  cursor: wait;
  opacity: .55;
}

@media (max-width: 980px) {
  .comiprep-account {
    width: 100%;
    justify-content: flex-end;
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid #ddd3c5;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .comiprep-account-meta span {
    display: none;
  }

  .comiprep-account-button {
    min-height: 36px;
  }
}
