/**
 * @section: Toggle Passwords on Logins and Password Change
 * @description: Supply custom css properties if a browser supports autofill and
 * input field is autofilled to handle js actions in 'toggle-password-visibility.js'.
 * @pages: posteo.de and posteo.de/login (simplelogin) and /konto/passwort
 */

@supports selector(:-webkit-autofill) {
  input {
    --knows-autofill: 1;
  }
  ::-ms-reveal {
    display: none
  }
}

@supports selector(:autofill) {
  input {
    --knows-autofill: 1;
  }
  ::-ms-reveal {
    display: none
  }
}

input:autofill {
  --autofilled: 1;
}

input:-webkit-autofill {
  --autofilled: 1;
}
