/* Recharge / Withdraw / Bind bank — light KR forms */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.form-card + .form-card { margin-top: 12px; }

.form-tip {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg2);
  color: var(--text2);
  font-size: 12px;
  line-height: 1.55;
}
.form-tip.warn {
  background: var(--sale-soft);
  color: #c2410c;
}
.form-tip.ok {
  background: rgba(28,193,0,.1);
  color: #15803d;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text2);
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  appearance: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(96, 121, 255, .16);
}
.field .hint {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.amount-grid .chip {
  text-align: center;
  justify-content: center;
}

.submit-bar { margin-top: 8px; }
.submit-bar .btn { width: 100%; height: 48px; border-radius: 14px; font-size: 15px; }

.bank-box {
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(135deg, #1b1f2a, #333a52);
  color: #fff;
  margin-bottom: 14px;
}
.bank-box .lab { font-size: 11px; opacity: .7; }
.bank-box .val { font-size: 15px; font-weight: 700; margin: 2px 0 10px; }
.bank-box .val:last-child { margin-bottom: 0; }
.copy-btn {
  margin-left: 8px;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  margin-bottom: 8px;
}
.pay-method.on {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: inset 0 0 0 1px var(--primary);
}
.pay-method .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #c4c7ce;
  display: grid;
  place-items: center;
}
.pay-method.on .radio {
  border-color: var(--primary);
}
.pay-method.on .radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.pay-method .pm-title { font-weight: 700; font-size: 14px; }
.pay-method .pm-desc { font-size: 11px; color: var(--muted); }

.eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.field.relative { position: relative; }
.field.relative input { padding-right: 64px; }

.bank-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1f2a, #333a52);
  color: #fff;
}
.bank-preview .bank-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.bank-preview .bank-meta { flex: 1; min-width: 0; }
.bank-preview .bn { font-size: 13px; font-weight: 700; }
.bank-preview .ba-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.bank-preview .ba {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  word-break: break-all;
}
.bank-preview .ba-eye {
  border: none;
  background: rgba(255,255,255,.14);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.bank-preview .ba {
  -webkit-user-select: none;
  user-select: none;
}
.bank-preview #bankEditLink {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}
