/* Seiten-CSS fuer forgot-password.php — ausgelagert aus dem Inline-<style>-Block. */

        .password-requirements {
            margin-top: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 8px;
            font-size: 0.8125rem;
            color: var(--text-2);
        }
        .password-requirements ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.25rem;
        }
        .password-requirements li {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }
        .password-requirements li .check-icon {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-1);
            transition: all 0.2s;
        }
        .password-requirements li.valid .check-icon {
            background: rgba(34, 197, 94, 0.15);
            border-color: #22c55e;
            color: #22c55e;
        }
        .password-requirements li.valid {
            color: #22c55e;
        }
        .password-strength-bar {
            height: 4px;
            border-radius: 2px;
            background: rgba(255,255,255,0.1);
            margin-top: 0.5rem;
            overflow: hidden;
        }
        .password-strength-bar .bar {
            height: 100%;
            border-radius: 2px;
            transition: width 0.3s, background 0.3s;
            width: 0;
        }
        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-3);
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
        }
        .toggle-password:hover {
            color: var(--text-2);
        }
        .form-group-password {
            position: relative;
        }
        .form-group-password .form-input {
            padding-right: 44px;
        }
        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.8125rem;
            color: var(--text-3);
        }
        .step-indicator .step {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .step-indicator .step.active {
            color: var(--primary);
        }
        .step-indicator .step-divider {
            width: 24px;
            height: 1px;
            background: var(--border-1);
        }
        .timer-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 8px;
            font-size: 0.8125rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
        }
    

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    
