.qa-account-dialog {
  box-sizing: border-box;
  width: min(440px, calc(100vw - 32px));
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #dce1ee;
  border-radius: 16px;
  color: #172033;
  background: #fff;
  box-shadow: 0 20px 70px #17203333;
  font: inherit;
}
.qa-account-dialog::backdrop {
  background: #17203388;
}
.qa-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qa-account-header h2 {
  margin: 0;
  font-size: 1.3rem;
}
.qa-account-form {
  display: grid;
  gap: 10px;
}
.qa-account-dialog [hidden] {
  display: none !important;
}
.qa-account-dialog input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  border: 1px solid #b9c2d5;
  border-radius: 8px;
  font: inherit;
}
.qa-account-dialog button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #b9c2d5;
  border-radius: 8px;
  background: white;
  color: #172033;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.qa-account-dialog .qa-account-primary {
  margin-top: 8px;
  background: #6048ed;
  border-color: #6048ed;
  color: white;
}
.qa-account-dialog :focus-visible {
  outline: 3px solid #8273ff;
  outline-offset: 3px;
}
.qa-account-dialog button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.qa-account-status,
.qa-account-identity {
  overflow-wrap: anywhere;
}
.qa-account-note {
  color: #596579;
  font-size: 0.875rem;
  line-height: 1.5;
}
