.honeycatch {
    position: relative;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.02);
}

.honeycatch__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.honeycatch__status {
    margin: 0;
    font-size: 0.875rem;
}

.honeycatch__spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-top-color: rgba(0, 0, 0, 0.45);
    animation: honeycatch-spin 1s linear infinite;
    margin-top: 0.5rem;
}

.honeycatch--solved .honeycatch__spinner {
    display: none;
}

.honeycatch__honeypot-label {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.honeycatch__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    border: 0;
    padding: 0;
    opacity: 0;
}

.honeycatch__noscript {
    color: #b81c1c;
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
}

@keyframes honeycatch-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
