    /* Minimal custom polish */
    .auth-card {
      box-shadow:
        0 10px 20px rgba(2, 132, 199, 0.08),
        0 6px 6px rgba(2, 132, 199, 0.06);
    }
    .focus-ring {
      outline: none;
      box-shadow: 0 0 0 4px rgba(2,132,199,0.15);
    }
    @keyframes pop {
      0% { transform: scale(1); }
      45% { transform: scale(0.9) rotate(-7deg); }
      100% { transform: scale(1) rotate(0); }
    }
    .pop { animation: pop 180ms ease; }

        /* Gender radio group spacing */
    .auth-card .gender-group { gap: 1.5rem; }