/* Kole UI CodeInput 样式 — 对齐 组件7.txt CodeInput：验证码 / 一次性口令输入 */

.kole-code { font-family: var(--font-family, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif); display: flex; gap: 8px; }
.kole-code-cell {
  position: relative;
  width: 44px; height: 48px;
  border: 1px solid var(--kole-color-border); border-radius: 8px;
  background: var(--kole-color-card-bg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, box-shadow .15s;
}
.kole-code-cell.is-focus { border-color: var(--kole-color-brand); box-shadow: 0 0 0 3px rgba(47,84,235,0.2); }
.kole-code-cell.is-filled { border-color: #B7C4FF; }
.kole-code-input {
  width: 100%; height: 100%;
  border: none; outline: none; background: none;
  text-align: center; font-size: 20px; font-weight: 600; color: var(--kole-color-text-title);
  padding: 0;
}
.kole-code-input::placeholder { color: var(--kole-color-text-placeholder); font-weight: 400; }
.kole-code-cell.is-masked .kole-code-input { -webkit-text-security: disc; text-security: disc; }
.kole-code-tip { font-size: 12px; margin-top: 8px; color: var(--kole-color-text-secondary); }
.kole-code-tip.error { color: var(--kole-color-error); }
