.ngps-shell,
.ngps-shell *,
.ngps-shell *::before,
.ngps-shell *::after {
    box-sizing: border-box;
}

.ngps-shell {
    width: min(
            1180px,
            calc(100% - 28px)
    );

    margin: 36px auto;
    color: var(--ngps-ink);
    font-family: var(--ngps-font);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    isolation: isolate;
}

.ngps-shell button,
.ngps-shell input,
.ngps-shell select,
.ngps-shell textarea {
    font-family: inherit;
}

.ngps-shell button {
    -webkit-tap-highlight-color: transparent;
}

.ngps-shell img {
    max-width: 100%;
}

.ngps-shell [hidden] {
    display: none !important;
}

.ngps-shell input,
.ngps-shell select,
.ngps-shell textarea,
.ngps-shell button {
    box-shadow: none;
}

.ngps-shell input[type="date"],
.ngps-shell input[type="datetime-local"] {
    color-scheme: light;
}

.ngps-shell input[type="checkbox"],
.ngps-shell input[type="radio"] {
    accent-color: var(--ngps-pink);
}

.ngps-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ngps-shell button:focus-visible,
.ngps-shell input:focus-visible,
.ngps-shell select:focus-visible,
.ngps-shell textarea:focus-visible {
    outline: 3px solid rgba(236, 72, 153, 0.22);
    outline-offset: 2px;
}

@keyframes ngpsFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ngpsSpin {
    to {
        transform: rotate(360deg);
    }
}