/* Screen Password Reset – projektspezifisches Layout (Host-Twig gemäß briefing/screens/password-reset/PasswordReset.md) */
.password-reset-section {
    max-width: 100%;
    padding: 1.5rem 0;
}

.password-reset-container {
    box-sizing: border-box;
    max-width: 36rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.password-reset-info-text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-normal);
}

/* Änderungsprotokoll: 2026-06-02 | codex-5.3 | @skill-change-provenance, @skill-css-rules | Sichtbarere Hover-Transition für Password-Reset-Card ergänzt */
.password-reset-container .base-card-body {
    transition: box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

/* Änderungsprotokoll: 2026-06-02 | codex-5.3 | @skill-change-provenance, @skill-css-rules | Deutlicher Mouse-Over-Effekt inkl. Keyboard-Fokus für Formularfläche */
.password-reset-container .base-card-body:hover,
.password-reset-container .base-card:focus-within .base-card-body {
    box-shadow: 0 1rem 2.25rem rgba(15, 23, 42, 0.2);
    transform: translateY(-0.15rem);
    background-color: rgba(255, 255, 255, 0.98);
}
