.password-requirements {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    font-size: 0.8rem;
    color: var(--muted-foreground);
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei Spalten für die Liste */
    gap: 0.25rem 1rem;
}

.password-requirements li {
    transition: color 0.3s ease;
}

.password-requirements li::before {
    content: '●'; /* Standard-Punkt */
    display: inline-block;
    width: 1.2em;
    color: var(--gray-500);
    transition: content 0.3s ease, color 0.3s ease;
}

.password-requirements li.valid {
    color: var(--green-500); /* Helleres Grün für den Text */
}

.password-requirements li.valid::before {
    content: '✔'; /* Grüner Haken */
    color: var(--green-500);
}

.password-requirements li.invalid {
    color: #ff4d4d; /* Helleres Rot für den Text */
}

.password-requirements li.invalid::before {
    content: '✖'; /* Rotes Kreuz */
    color: #ff4d4d;
}

/* Styling für die Auth-Seiten-Container (Login, Signup, Reset etc.) */
.auth-card {
    background-color: var(--siq-dark-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px; /* Etwas breiter für besseres Aussehen */
    margin: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(102, 155, 188, 0.1); /* SIQ-Blue, transparent */
    margin-bottom: 1rem;
}

.auth-header .icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--siq-blue);
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
}

.auth-header p {
    color: var(--muted-foreground);
    margin-top: 0.5rem;
    line-height: 1.5;
}