/* extracted from resources/views/auth/forgot-password.blade.php */
*{margin:0;padding:0;box-sizing:border-box}
        body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);color:#f8fafc;padding:1rem}
        .card{width:100%;max-width:420px;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.4)}
        .head{background:linear-gradient(135deg,#2563eb,#06b6d4);padding:1.9rem 1.5rem;text-align:center;color:#fff}
        .head .ico{width:52px;height:52px;margin:0 auto .75rem;border-radius:14px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center}
        .head .ico svg{width:26px;height:26px;stroke:#fff}
        .head h1{font-size:1.35rem;font-weight:700;margin-bottom:.3rem}
        .head p{font-size:.85rem;opacity:.92;line-height:1.45}
        .body{padding:1.6rem 1.5rem 1.4rem;color:#1a202c}
        .alert{padding:.7rem .85rem;border-radius:8px;font-size:.85rem;margin-bottom:1rem;line-height:1.45}
        .alert-danger{background:#fef2f2;border:1px solid #fecaca;color:#b91c1c}
        .alert-success{background:#ecfdf5;border:1px solid #a7f3d0;color:#047857}
        .field{margin-bottom:1.1rem}
        label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.4rem;color:#1a202c}
        .input-wrap{position:relative}
        .input-wrap svg{position:absolute;left:.85rem;top:50%;transform:translateY(-50%);width:18px;height:18px;stroke:#94a3b8;pointer-events:none}
        input[type=email]{width:100%;padding:.72rem .9rem .72rem 2.5rem;border:1.5px solid #d1d5db;border-radius:9px;font-size:.95rem;transition:border-color .15s,box-shadow .15s;color:#1a202c}
        input[type=email]:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.12)}
        button.submit{width:100%;padding:.8rem;border:none;border-radius:30px;background:linear-gradient(135deg,#2563eb,#06b6d4);color:#fff;font-size:.95rem;font-weight:600;cursor:pointer;transition:transform .15s,box-shadow .15s;display:flex;align-items:center;justify-content:center;gap:.5rem}
        button.submit:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(37,99,235,.35)}
        button.submit:disabled{opacity:.6;cursor:not-allowed;transform:none;box-shadow:none}
        .back{display:flex;align-items:center;justify-content:center;gap:.4rem;margin-top:1.25rem;padding-top:1.1rem;border-top:1px solid #eef2f7;font-size:.85rem}
        .back a{color:#2563eb;text-decoration:none;font-weight:500;display:inline-flex;align-items:center;gap:.35rem}
        .back a:hover{text-decoration:underline}
        .back a svg{width:15px;height:15px;stroke:currentColor}
        .foot{text-align:center;margin-top:1rem;font-size:.75rem;color:#6b7280;line-height:1.5}
        .spinner{width:18px;height:18px;border:2.5px solid rgba(255,255,255,.35);border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite}
        @keyframes spin{to{transform:rotate(360deg)}}
        /* success confirmation panel */
        .sent{text-align:center;padding:.4rem 0 .2rem}
        .sent .check{width:64px;height:64px;margin:0 auto 1rem;border-radius:50%;background:#ecfdf5;display:flex;align-items:center;justify-content:center}
        .sent .check svg{width:30px;height:30px;stroke:#10b981}
        .sent h2{font-size:1.15rem;font-weight:700;margin-bottom:.5rem;color:#1a202c}
        .sent p{font-size:.88rem;color:#475569;line-height:1.55;margin-bottom:.35rem}
        .sent .email{font-weight:600;color:#1a202c;word-break:break-all}
        .sent .hint{font-size:.8rem;color:#64748b;margin-top:.9rem}
        .sent .hint a{color:#2563eb;text-decoration:none;font-weight:500;cursor:pointer}
        .sent .hint a:hover{text-decoration:underline}
