*{
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgb(218, 218, 218) transparent;
    scroll-behavior: smooth;
}

li{
    list-style: none;
}

body, html{
  overflow-y: hidden;
  overflow-x: hidden;
}

form,
textarea,
select,
input,
button,
h1,
h2,
h3,
h4,
h5,
p,
span,
ul,
li,
body{
    margin: 0;
    padding: 0;
}

textarea,
select,
button,
input{
    border: none;
}

textarea,
button,
select,
input{
    background-color: transparent;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-text-fill-color: var(--color-light);
}

textarea:focus,
select:focus,
input:focus{
    border: none;
    outline: none;
}

button{
    cursor: pointer;
}

textarea{
    resize: none;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

input::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(83%) sepia(7%) saturate(88%) hue-rotate(158deg) brightness(93%) contrast(88%);
  color: var(--color-primary);
}

input[type="datetime-local"]{
    width: 205px;
}
