	 .fw-captcha-container {
            max-width: 300px;
            margin: 20px auto;
            font-family: Arial, sans-serif;
        }

        .fp-captcha-box {
            margin: 8px 0 14px 0;
        }

        .fp-captcha-img-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            width: fit-content;
        }

        .fp-captcha-img {
            border-radius: 3px;
            box-shadow: 0 1px 4px #eee;
            display: block;
            width: 200px;
            height: 60px;
            border: 1px solid #ddd;
        }

        .fp-captcha-refresh {
            height: 60px;
            font-size: 16px;
            padding: 0 10px;
            cursor: pointer;
            border: 1px solid #ddd;
            background: #f8f9fa;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: stretch;
            color: #666;
            transition: all 0.2s ease;
        }

        .fp-captcha-refresh:hover {
            background: #e9ecef;
            border-color: #ccc;
            color: #333;
        }

        .fp-captcha-refresh:active {
            background: #dee2e6;
            transform: translateY(1px);
        }

        .fp-captcha-input-wrapper {
            margin: 8px 0;
        }

        .fp-captcha-input {
            width: calc(200px + 8px + 36px);
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 3px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .fp-captcha-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }

        .fp-field-error {
            border-color: #e22 !important;
            background: #fff6f6 !important;
        }

        .fp-field-error-message {
            color: #e22;
            font-size: 13px;
            margin: 2px 0 6px 0;
        }

        .fp-success-message {
            color: #186f30;
            background: #e4ffe7;
            padding: 7px 10px;
            margin: 7px 0 10px 0;
            border-radius: 5px;
            font-size: 15px;
            border: 1px solid #b0e6ba;
            display: none;
        }

        .fp-general-errors {
            color: #e22;
            background: #ffeaea;
            padding: 7px 10px;
            margin: 8px 0 12px 0;
            border-radius: 5px;
            font-size: 14px;
            border: 1px solid #ffd1d1;
            display: none;
        }