<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Target .form-widget that contains an input of type password */
.form-widget:has(input[type="password"]),.form-widget:has(input[type="text"]) {
    position: relative;
  }
  
  /* Style for the toggle button inside the targeted form-widget */
  .form-widget:has(input[type="password"]) .toggle-password-btn,.form-widget:has(input[type="text"]) .toggle-password-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #007bff;
    font-size: 14px;
  }
  
</pre></body></html>