/* =========================================
   1. СБРОС И БАЗА (reset.css)
========================================= */
* { box-sizing: border-box; }
*:focus { outline: 0; }

html { height: 100%; }
body {
    -webkit-font-smoothing: antialiased;
    padding: 0; margin: 0;
    overflow-y: scroll;
    font-family: Tahoma, sans-serif;
    font-size: 13px;
}

h1, h2, h3, h4, h5 { margin: 0; font-weight: normal; }
form { margin: 0; }

a { text-decoration: none; transition: color 0.1s; }
a:hover { text-decoration: none; }

/* Базовые инпуты */
input[type="text"], input[type="password"], textarea, select {
    font-family: inherit; font-size: 13px;
    border: 1px solid var(--bd-base, #ccc);
    border-radius: 3px; padding: 4px 8px; box-sizing: border-box;
}
textarea { resize: none; }
input[type="button"], input[type="submit"] {
    border: 1px solid var(--bd-base, #ccc); padding: 4px 15px;
    border-radius: 3px; cursor: pointer; transition: all 0.1s;
}