/* TokenPocket API 支付授权页 - 极简白底黑字 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-font-smoothing: antialiased;
}

.orb {
  display: none;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 28px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.sub {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.notice {
  margin: 10px 0 4px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #444444;
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 8px;
}
.notice strong {
  color: #1a1a1a;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  margin: 18px 0 8px;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}
input::placeholder {
  color: #999999;
}
input:focus,
select:focus {
  border-color: #1a1a1a;
}

.wallet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

#walletText {
  font-size: 13px;
  color: #666666;
}

.btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s, transform 0.05s;
  font-family: inherit;
}
.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  width: auto;
  padding: 10px 18px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #cccccc;
  font-size: 14px;
}
.btn-ghost:hover {
  background: #f6f6f6;
}

.btn-main {
  background: #1a1a1a;
  color: #ffffff;
  margin-top: 12px;
}
.btn-main:hover:not(:disabled) {
  background: #333333;
}
.btn-main:disabled {
  background: #e0e0e0;
  color: #b0b0b0;
  cursor: not-allowed;
}

.status {
  margin-top: 16px;
  font-size: 13px;
  color: #666666;
  min-height: 18px;
}

.tips {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
  background: #f6f6f6;
  border: 1px solid #ececec;
  border-radius: 8px;
}
.tips a {
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 520px) {
  .card {
    padding: 24px 20px;
  }
  h1 {
    font-size: 21px;
  }
}
