/* ==========================================================
   LicitaAI.club
   reset.css
   Reset CSS Global
   Versão: 1.0
========================================================== */

/* Box Model */

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

/* HTML */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* Body */

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Images */

img,
picture,
video,
canvas,
svg{
    display:block;
    max-width:100%;
}

/* Forms */

input,
button,
textarea,
select{
    font:inherit;
    color:inherit;
    background:none;
    border:none;
    outline:none;
}

/* Buttons */

button{
    cursor:pointer;
}

/* Links */

a{
    color:inherit;
    text-decoration:none;
}

/* Lists */

ul,
ol{
    list-style:none;
}

/* Tables */

table{
    border-collapse:collapse;
    border-spacing:0;
    width:100%;
}

/* Quotes */

blockquote,
q{
    quotes:none;
}

/* Hidden */

[hidden]{
    display:none !important;
}