:root {
    --color-light-text-primary: rgba(3, 3, 6, 0.88);
    --color-light-transparent-default: rgba(255, 255, 255, 0);
    --color-light-transparent-default-hover: rgba(38, 55, 88, 0.06);
    --color-light-transparent-default-press: rgba(30, 43, 68, 0.08);
}
:root {
    --border-radius-circle: 50%;
}
:root {
    --gap-0: 0px;
}
:root {
    --font-family-system:
        system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, sans-serif;
}
:root {
    --size-l-height: 64px;
}
:root {
    --pass-code-button-width: var(--size-l-height);
    --pass-code-button-min-width: var(--size-l-height);
    --pass-code-button-height: var(--size-l-height);
}
.button.button {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    font-family: var(--font-family-system);

    border-radius: var(--border-radius-circle);
    padding: var(--gap-0);
    min-width: var(--pass-code-button-min-width);
    width: var(--pass-code-button-width);
    height: var(--pass-code-button-height);

    text-align: center;
}
.button.button > span {
        vertical-align: middle;
    }
.button.button > span > * {
            vertical-align: middle;
        }
.secondary.secondary,
.button.button {
    color: var(--color-light-text-primary);
    background-color: var(--color-light-transparent-default);
}
@media (hover: hover) {
        .secondary.secondary:hover, .button.button:hover {
            background-color: var(--color-light-transparent-default-hover);
        }
    }
.secondary.secondary:active, .button.button:active {
        background-color: var(--color-light-transparent-default-press);
    }
