/* CIBI — parent/auth/forgot-password.blade.php */
:root {
            --primary: #6366f1; --primary-dark: #4f46e5; --primary-light: #818cf8;
            --primary-bg: #eef2ff; --text-dark: #1e293b; --text-muted: #64748b;
            --text-light: #94a3b8; --bg: #f8fafc; --card-bg: #fff; --border: #e2e8f0;
            --radius: 12px; --radius-sm: 8px; --shadow-md: 0 4px 16px rgba(0,0,0,.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,.10); --danger: #ef4444; --success: #16a34a;
            --success-bg: #f0fdf4;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: var(--bg); min-height: 100vh; display: flex; flex-direction: column;
            align-items: center; justify-content: center; padding: 20px;
        }
        .topbar {
            position: fixed; top: 0; left: 0; right: 0; height: 60px;
            background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226,232,240,.6);
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 28px; z-index: 100;
        }
        .topbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity .15s ease; }
        .topbar-brand:hover { opacity: .8; }
        .topbar-logo {
            width: 34px; height: 34px; border-radius: 9px;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 15px;
            box-shadow: 0 2px 8px rgba(99,102,241,.25);
        }
        .topbar-brand-text { font-size: 15px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.01em; }
        .topbar-btn {
            display: inline-flex; align-items: center; gap: 7px;
            padding: 8px 16px; border-radius: 8px;
            font-size: 13px; font-weight: 600; color: var(--text-muted);
            text-decoration: none; background: transparent;
            border: 1px solid var(--border); transition: all .15s ease;
        }
        .topbar-btn:hover {
            color: var(--primary); border-color: var(--primary-light);
            background: var(--primary-bg);
        }
        .topbar-btn svg { transition: transform .15s ease; }
        .topbar-btn:hover svg { transform: translateX(-2px); }
        .auth-wrapper { width: 100%; max-width: 440px; margin-top: 40px; }
        .auth-container {
            background: var(--card-bg); border: 1px solid var(--border);
            border-radius: var(--radius); padding: 40px 36px;
            box-shadow: var(--shadow-lg);
        }
        .auth-logo {
            width: 56px; height: 56px; border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), #8b5cf6);
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-weight: 800; font-size: 24px; margin: 0 auto 20px;
        }
        .auth-title { font-size: 22px; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 8px; }
        .auth-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 28px; line-height: 1.6; }
        .form-group { margin-bottom: 20px; }
        .form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
        .form-input {
            width: 100%; padding: 12px 16px; border: 1px solid var(--border);
            border-radius: var(--radius-sm); font-size: 15px; color: var(--text-dark);
            background: var(--card-bg); transition: all .15s ease; font-family: inherit;
        }
        .form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-bg); }
        .btn {
            display: inline-block; width: 100%; padding: 12px 24px;
            border-radius: var(--radius-sm); border: none; cursor: pointer;
            font-size: 15px; font-weight: 600; transition: all .15s ease;
        }
        .btn-primary { background: var(--primary); color: #fff; }
        .btn-primary:hover { background: var(--primary-dark); }
        .alert {
            padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px;
            font-size: 14px; display: flex; align-items: flex-start; gap: 10px;
        }
        .alert-success { background: var(--success-bg); color: #15803d; border: 1px solid #bbf7d0; }
        .alert-danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
        .alert-info { background: var(--primary-bg); color: var(--primary-dark); border: 1px solid #c7d2fe; }
        .auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }
        .auth-footer a { color: var(--primary); font-weight: 600; text-decoration: none; }
        .auth-footer a:hover { text-decoration: underline; }
        .legal-footer { margin-top: 32px; text-align: center; }
        .legal-links { margin-bottom: 8px; }
        .legal-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
        .legal-links a:hover { color: var(--primary); }
        .legal-links .sep { color: var(--text-light); font-size: 12px; }
        .copyright { font-size: 11px; color: var(--text-light); line-height: 1.6; }
        @media (max-width: 480px) {
            .auth-container { padding: 28px 20px; }
            .auth-title { font-size: 20px; }
        }
