.auth-form input {
    font-family: OpenSansLight, serif;
    padding: 7px;
    border-color: var(--lightGray);
    border-radius: 5px;
    font-size: 1.025rem;
    border-width: 1px;
    border-style: solid;
    text-transform: none;
    font-family: OpenSansLight, serif !important;
    letter-spacing: unset;
    width: 70%;
}

.auth-form input:focus {
    outline-color: var(--blackRose) !important;
}

.auth-form p {
    flex-direction: column;
}

/* REGISTRIEREN */

/* eingebaute Django-Hilfe ausblenden */
#id_password1_helptext { display: none; }

/* neutrale Optik + Statusfarben */
.pw-rules ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.pw-rules li { color: #6b7280;  /* neutral grau */ }
.pw-rules li.ok { color: #15803d; /* grün */ }

/* optional: Häkchen davor, wenn ok */
.pw-rules li.ok::before {
  content: "✓ ";
  font-weight: 600;
}

li {
    list-style: none;
}

.nonfield {
    display: none;
}

/* FORM ERRORS im selben Stil wie .messages .message.error */

.errorlist {
    list-style-type: none;
    padding: 10px;
    margin: 0 0 10px 0;
    border-radius: 4px;
    font-size: 14px;
    background-color: rgb(253, 237, 237);
    color: rgb(95, 33, 32);
    border: 1px solid rgb(211, 47, 47, 0.2);
}

.errorlist li {
    display: flex;
    align-items: center;
}

/* optional: kleines Icon davor (wie deine message.error .icon) */
.errorlist li::before {
    content: "⚠️";
    font-size: 16px;
    margin-right: 8px;
    color: rgb(211, 47, 47);
}