diff --git a/pb_public/index.html b/pb_public/index.html
index efd4070..f41c9af 100644
--- a/pb_public/index.html
+++ b/pb_public/index.html
@@ -25,6 +25,12 @@
width:100%; padding:12px; border-radius:10px; border:1px solid var(--line);
background:var(--bg); color:var(--fg); font-size:15px; }
input:focus, select:focus { outline:2px solid var(--amber); border-color:transparent; }
+ /* Every other interactive thing on this page is amber. A browser-default blue
+ underlined link in the middle of it reads as something pasted in from
+ another site, which is not what you want somebody to think while they are
+ already worried they have lost their account. */
+ a { color:var(--amber); text-decoration:none; }
+ a:hover, a:focus-visible { text-decoration:underline; }
.row { display:flex; gap:10px; } .row > * { flex:1; min-width:0; }
.hint { font-size:12px; color:var(--muted); margin:5px 0 0; line-height:1.45; }
.check { display:flex; gap:10px; align-items:flex-start; margin-top:14px;