/********** wallet CSS **********/
        body {
            font-family: Arial, sans-serif;
        }
        .popup {
            background-color: white;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 50px auto;
            position: relative;
            border-radius: 8px;
        }
        .header {
            background-color: #733c92;
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 5px 5px 0 0;
            font-size: 18px;
        }
        .content {
            margin-top: 20px;
        }
        .content p {
            text-align: center;
            font-size: 18px;
            margin-bottom: 25px;
        }
        .input-box {
            border: 1px solid rgb(177, 173, 179);
            padding: 10px;
            width: 100%;
            box-sizing: border-box;
            font-size: 16px;
            color: #1d1c1d;
            background-color: white;
        }
        .input-box::placeholder {
            color: #000;
            opacity: 0.5;
        }
        .button {
            display: block;
            background-color: #ffffff;
            color: #733c92;
            border-color: #733c92;
            text-align: center;
            padding: 10px;
            margin-top: 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            border: 1px solid;
            width: 100%;
        }
        .footer {
            text-align: left;
            margin-top: 26px;
            font-size: 16px;
            color: #464646;
        }
        #error-message {
            color: #ea5a60;
            display: none;
            font-family: Arial, Helvetica, sans-serif;
            text-align: center;
            margin-top: 10px;
            font-size: small;
            font-weight: thin;
        }
