* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    color: #404040;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "PingFang SC",
        "Microsoft YaHei", sans-serif;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

a {
    color: inherit;
}

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

button {
    border: 1px solid #d2d4e4;
    background: #ffffff;
    padding: 8px 12px;
    line-height: 1.2;
    cursor: pointer;
}

button:active {
    transform: translateY(1px);
}

button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d2d4e4;
    outline-offset: 2px;
}

select,
input,
textarea {
    border: 1px solid #d2d4e4;
    background: #ffffff;
    padding: 6px 10px;
    line-height: 1.2;
}