.auth-text-button {
  min-height: 28px;
  border: 0;
  color: #aeb3d1;
  background: transparent;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.auth-text-button:hover { color: #fff; }

.account-status {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 12px;
  margin: -14px 0 24px;
  padding: 16px 18px;
  border: 1px solid #393d6d;
  border-radius: 14px;
  background: rgba(23, 25, 54, .74);
}

.account-status > div {
  display: grid;
  grid-template-columns: 10px 1fr;
  column-gap: 9px;
  align-items: center;
}

.account-status > div > span {
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f7392;
}

.account-status > div > span.ready {
  background: var(--success);
  box-shadow: 0 0 14px rgba(84, 217, 163, .45);
}

.account-status > div > span.waiting { background: #f3c56b; }
.account-status > div > span.rejected { background: #ff7385; }
.account-status strong { font-size: 12px; }
.account-status p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.upload-panel.locked .upload-drop,
.upload-panel.locked form button { opacity: .38; }
.upload-panel.locked .upload-rules::after {
  content: "完成邮箱验证并通过账号审核后可上传";
  display: block;
  margin-top: 12px;
  color: #f3c56b;
  font-size: 10px;
}

.review-badge {
  display: inline-flex;
  margin-left: 7px;
  padding: 3px 6px;
  border-radius: 5px;
  color: #f3c56b;
  background: #3b3326;
  font: 8px Consolas, monospace;
  vertical-align: 2px;
}

.review-badge.approved { color: var(--success); background: #18372f; }
.review-badge.rejected { color: #ff9da8; background: #432632; }

@media (max-width: 900px) {
  .account-status { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .account-status { grid-template-columns: 1fr; }
}
