@charset "ISO-8859-1";

        
        .modal-content {
            background-color: #ffcccc;
            border-radius: 15px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
            animation: popup 0.5s ease-in-out;
        }
        @keyframes popup {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .btn-custom {
            background-color: #b30000;
            color: white;
            border-radius: 10px;
            border: none;
            padding: 10px 20px;
            transition: background-color 0.3s;
        }
        .btn-custom:hover {
            background-color: #800000;
        }
        .captcha-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    