@charset 'UTF-8';


html,
body {
    height: 100%;
    overflow: hidden;
}
html {
    font-size: 16px;
}
* {
    box-sizing: border-box;
}


body {
    margin: 0;
    color: var(--color-text-primary);
    background: var(--color-bg-shell);
    font-family: var(--font-family-base);
    letter-spacing: 0;
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}
input[readonly] {
    background-color: var(--color-bg-input-disabled);
    color: var(--color-text-disabled);
    cursor: default;
}
input[readonly]:focus,
input[readonly]:active {
    border: 1px solid var(--color-border-subtle);
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-symbol {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    color: var(-color-primary-strong);
    font-weight: 800;
}
