/* ============ signup window ============ */
.win-signup .su-body { padding: 16px 18px 18px; display: flex; flex-direction: column; }
.su-lead { font-size: 13px; line-height: 1.5; color: var(--frost-70); margin-bottom: 14px; }
.su-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--frost-35); margin: 0 0 5px 2px;
}
.su-input {
  font: inherit; font-size: 13.5px; color: var(--frost);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--glass-line); border-radius: 9px;
  padding: 8px 11px; margin-bottom: 12px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.su-input::placeholder { color: var(--frost-35); }
.su-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.su-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.su-btn { justify-content: center; margin-top: 2px; cursor: pointer; }
.su-btn svg { fill: #fff; stroke: none; }
.su-btn:disabled { opacity: .55; pointer-events: none; }
.su-msg { margin: 11px 2px 0; font-size: 12.5px; line-height: 1.45; }
.su-msg.ok { color: #30d158; }
.su-msg.err { color: #ff8a80; }

