.policy-accept {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.policy-accept:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(0, 0, 0, 0.3);
}
.policy-accept__check {
    position: relative;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
}
.policy-accept__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}
.policy-accept__box {
    position: absolute;
    inset: 0;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-radius: 0.375rem;
    background: rgba(15, 15, 16, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.policy-accept__input:focus-visible + .policy-accept__box {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
}
.policy-accept__input:checked + .policy-accept__box {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.62);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}
.policy-accept__box::after {
    content: '';
    width: 0.35rem;
    height: 0.6rem;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    margin-bottom: 2px;
    transition: transform 0.15s ease;
}
.policy-accept__input:checked + .policy-accept__box::after {
    transform: rotate(45deg) scale(1);
}
.policy-accept__text {
    flex: 1;
    min-width: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}
.policy-accept__text a {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.policy-accept__text a:hover {
    color: #fde68a;
}
