.password-entry { display: flex; align-items: center; position: relative; width: 100%; }
.password-entry input { width: 100%; padding-right: 52px !important; }
.password-entry .password-eye { position: absolute; right: 3px; display: grid; place-items: center; width: 44px; min-height: 44px; padding: 8px; border: 0; background: transparent; color: #245565; box-shadow: none; }
.password-eye:focus-visible { outline: 2px solid #2278bc; outline-offset: -3px; }
.password-eye[aria-pressed="true"] { background: #e5f2f3; border-radius: 8px; }
.password-requirements { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 12px; margin: 8px 0; padding: 0; list-style: none; font-size: .78rem; font-weight: 400; color: #52636c; }
.password-requirements .met { color: #087747; }
@media(max-width:360px) { .password-requirements { grid-template-columns: 1fr; } }
