/* ═══════════════════════════════════════════════════
   MitchMarket — Customer Sign Up Styles
   ═══════════════════════════════════════════════════ */

.user-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(49,255,255,.06);
  border: 1px solid rgba(49,255,255,.1);
  margin-bottom: 1.5rem;
}
.user-icon svg {
  width: 28px; height: 28px;
  color: var(--secondary);
}

.password-rules {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  margin-top: .4rem;
  margin-bottom: 1rem;
}
.password-rules .rule {
  font-size: .7rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .3s;
}
.password-rules .rule svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
}
.password-rules .rule.met { color: var(--success); }
