*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    font-size:16px;
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:#f5f7fb;
    color:#1f2937;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

img{
    display:block;
    max-width:100%;
}

button,
input,
textarea,
select{
    font:inherit;
    outline:none;
    border:none;
    background:none;
}

button{
    cursor:pointer;
}

textarea{
    resize:vertical;
}

a{
    text-decoration:none;
    color:inherit;
}

ul,
ol{
    list-style:none;
}

table{
    width:100%;
    border-collapse:collapse;
}

th,
td{
    text-align:left;
}

input,
textarea,
select{
    width:100%;
}

:disabled{
    cursor:not-allowed;
    opacity:.6;
}

::-webkit-scrollbar{
    width:10px;
    height:10px;
}

::-webkit-scrollbar-thumb{
    background:#cbd5e1;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#eef2f7;
}

.hidden{
    display:none!important;
}

.flex{
    display:flex;
}

.grid{
    display:grid;
}

.center{
    display:flex;
    align-items:center;
    justify-content:center;
}