@charset "utf-8";
/* CSS Document */
 .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
			z-index: 1200;
        }

        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            width: 90%;
            max-width: 400px;
        }

        .popup-content h2 {
            margin-top: 0;
        }

        .popup-content input {
            width: calc(100% - 20px);
            margin: 10px 0;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .popup-content button {
            padding: 10px 20px;
            background-color: #ff3b3f;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .popup-content button:hover {
            background-color: #d32f2f;
        }

        .popup-content .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
        }

        .agreement {
            font-size: 12px;
            color: #777;
            margin-top: 10px;
        }

        .agreement a {
            color: #007bff;
            text-decoration: none;
        }

        .agreement a:hover {
            text-decoration: underline;
        }