*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    text-rendering: optimizeSpeed;
    font-size: 16px;
}

span,
label,
a {
    display: block;
    font-family: Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    max-width: max-content;
    color: #000;
}

b {
    font-weight: 500;
}

svg {
    display: block;
    overflow: visible;
    height: 100%;
    width: 100%;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    user-select: none;
    pointer-events: none;
    max-width: 100%;
    display: block;
}

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

input:not([type="checkbox"]) {
    display: block;
    font-family: Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    background: #FFF;
    font-size: 16px;
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0;
}

input:not([type="checkbox"])::placeholder {
    user-select: none;
}

input[type="checkbox"] {
    padding: 0;
    margin: 0;
}

button {
    all: unset;
    display: block;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-weight: 600;
    user-select: none;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: max-content;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.capitalize {
    text-transform: capitalize;
}

.capitalize::placeholder,
.uppercase::placeholder {
    text-transform: none;
}

.uppercase {
    text-transform: uppercase;
}