Feat: show footer on login page with transparent styling

This commit is contained in:
Daniel Onyejesi 2026-03-22 19:40:35 -04:00
parent 4d45050522
commit 0851d47ab9
2 changed files with 10 additions and 0 deletions

View file

@ -35,6 +35,9 @@ body{font-family:'Inter',system-ui,sans-serif;background:var(--g50);color:var(--
/* FOOTER */
.app-footer{background:var(--g800);color:var(--g400);font-size:11px;text-align:center;padding:12px 24px;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:6px;line-height:1.6;}
.footer-sep{color:var(--g600);}
.auth-screen{flex-direction:column;justify-content:center;}
.auth-footer{background:transparent;color:rgba(255,255,255,0.45);margin-top:24px;width:100%;}
.auth-footer .footer-sep{color:rgba(255,255,255,0.25);}
/* HEADER */
.app-header{background:linear-gradient(135deg,var(--blue) 0%,var(--purple) 100%);color:white;padding:14px 24px;}

View file

@ -93,6 +93,13 @@
<span>HIPAA Notice: Do not enter real PHI unless your organization has a BAA with all AI providers used.</span>
</div>
</div>
<footer class="app-footer auth-footer">
<span>Committed to healthcare equity &mdash; equal access to quality care for every child.</span>
<span class="footer-sep">&bull;</span>
<span>Always consult a qualified healthcare professional for medical advice.</span>
<span class="footer-sep">&bull;</span>
<span>&copy; <script>document.write(new Date().getFullYear())</script> Pediatric AI Scribe. All rights reserved.</span>
</footer>
</div>
<!-- MAIN APP (hidden until authenticated) -->