/*
 * Two things to know about styling altcha 3.x from a stylesheet:
 *
 * 1. The widget injects its own styles into <head> at runtime, so they always come
 *    after this file. Custom properties therefore go on the widget element instead
 *    of on :root, where the widget's own :root defaults would win.
 * 2. Those styles contain ".altcha * { all: revert-layer }", which resets every
 *    property this file sets on an element inside the widget. Own rules need at
 *    least that specificity, hence the ".altcha " prefix everywhere below.
 */
altcha-widget {
	--altcha-border-radius: 5px;
	/* --altcha-border-width: 1px; */
	--altcha-color-base: #FAFAFA;
	--altcha-border-color: rgba(204, 204, 204, 0.5);
	/* --altcha-checkbox-border-color: currentColor; */
	/* --altcha-color-base-content: currentColor; */
	/* --altcha-color-error: #f23939; */
	--altcha-max-width: 280px;
	--altcha-color-success: currentColor;
	--altcha-color-success-content: var(--altcha-color-base);
}

.altcha .altcha-main {
	position: relative;
	/* Right side leaves room for the shield below */
	padding: 1rem 3.5rem 1rem 1.5rem;
	gap: 1rem;
}

.altcha .altcha-main::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 23px;
	height: 25px;
	background-color: currentColor;
	-webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 23 25"><path fill="%230078FF" d="M21.109 19.788c-.683 0-1.235-.532-1.235-1.188v-7.125c0-.655.552-1.188 1.235-1.188.682 0 1.235.533 1.235 1.188V18.6c0 .656-.553 1.188-1.235 1.188Zm-.256-10.775c.631-.246.937-.939.681-1.546C19.827 3.41 15.782.787 11.229.787 6.675.787 2.63 3.409.922 7.467c-.256.607.049 1.3.681 1.546.631.248 1.353-.047 1.608-.654 1.33-3.158 4.476-5.197 8.018-5.197 3.54 0 6.688 2.04 8.016 5.196.194.462.656.743 1.144.743.155 0 .312-.03.464-.088ZM2.583 18.6v-7.125c0-.655-.553-1.188-1.234-1.188-.682 0-1.235.533-1.235 1.188V18.6c0 .656.553 1.188 1.235 1.188.681 0 1.234-.532 1.234-1.188Zm9.88 4.75v-3.563c0-.656-.553-1.187-1.235-1.187-.681 0-1.235.531-1.235 1.188v3.562c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Zm0-7.125v-4.75c0-.655-.553-1.188-1.235-1.188-.681 0-1.235.533-1.235 1.188v4.75c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Zm4.94 4.75v-4.75c0-.656-.552-1.188-1.234-1.188-.683 0-1.236.532-1.236 1.188v4.75c0 .656.553 1.188 1.236 1.188.682 0 1.234-.532 1.234-1.188Zm0-8.313v-1.187c0-3.274-2.77-5.938-6.174-5.938-3.405 0-6.175 2.664-6.175 5.938v1.188c0 .655.553 1.187 1.235 1.187.681 0 1.235-.532 1.235-1.188v-1.187c0-1.965 1.661-3.563 3.705-3.563 2.043 0 3.704 1.598 3.704 3.563v1.188c0 .655.553 1.187 1.236 1.187.682 0 1.234-.532 1.234-1.188Zm-9.88 8.313v-4.75c0-.656-.553-1.188-1.234-1.188-.682 0-1.236.532-1.236 1.188v4.75c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Z"/></svg>') no-repeat center / contain;
	mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 23 25"><path fill="%230078FF" d="M21.109 19.788c-.683 0-1.235-.532-1.235-1.188v-7.125c0-.655.552-1.188 1.235-1.188.682 0 1.235.533 1.235 1.188V18.6c0 .656-.553 1.188-1.235 1.188Zm-.256-10.775c.631-.246.937-.939.681-1.546C19.827 3.41 15.782.787 11.229.787 6.675.787 2.63 3.409.922 7.467c-.256.607.049 1.3.681 1.546.631.248 1.353-.047 1.608-.654 1.33-3.158 4.476-5.197 8.018-5.197 3.54 0 6.688 2.04 8.016 5.196.194.462.656.743 1.144.743.155 0 .312-.03.464-.088ZM2.583 18.6v-7.125c0-.655-.553-1.188-1.234-1.188-.682 0-1.235.533-1.235 1.188V18.6c0 .656.553 1.188 1.235 1.188.681 0 1.234-.532 1.234-1.188Zm9.88 4.75v-3.563c0-.656-.553-1.187-1.235-1.187-.681 0-1.235.531-1.235 1.188v3.562c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Zm0-7.125v-4.75c0-.655-.553-1.188-1.235-1.188-.681 0-1.235.533-1.235 1.188v4.75c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Zm4.94 4.75v-4.75c0-.656-.552-1.188-1.234-1.188-.683 0-1.236.532-1.236 1.188v4.75c0 .656.553 1.188 1.236 1.188.682 0 1.234-.532 1.234-1.188Zm0-8.313v-1.187c0-3.274-2.77-5.938-6.174-5.938-3.405 0-6.175 2.664-6.175 5.938v1.188c0 .655.553 1.187 1.235 1.187.681 0 1.235-.532 1.235-1.188v-1.187c0-1.965 1.661-3.563 3.705-3.563 2.043 0 3.704 1.598 3.704 3.563v1.188c0 .655.553 1.187 1.236 1.187.682 0 1.234-.532 1.234-1.188Zm-9.88 8.313v-4.75c0-.656-.553-1.188-1.234-1.188-.682 0-1.236.532-1.236 1.188v4.75c0 .656.554 1.188 1.236 1.188.681 0 1.235-.532 1.235-1.188h-.001Z"/></svg>') no-repeat center / contain;
}
