﻿
h1:focus {
    outline: none;
}

/* ═══ Android Autofill / Autocomplete Prevention ═══
   Verhindert, dass Android Chrome und Passwort-Manager
   Formularfelder automatisch mit gespeicherten Werten füllen.
   Problem: Texte wie "WIR" werden zu "WE", "G" wird zu "Tor" etc.
*/

/* Autofill-Styling zurücksetzen */
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Chrome Autofill-Overlay ausblenden */
input::-webkit-credentials-auto-fill-button,
input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

