/* base.css — 공통 리셋 및 폰트
   수치 근거: docs/assets/screenshots/baseline/login-styles.json
   (page root: color rgb(51,51,51), font-size 14px, font-weight 400,
    font-family "Tahoma, serif") */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 400;
    font-family: Tahoma, serif;
    line-height: normal;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font-family: inherit;
}
