:root {
    --text: #050101;
    --background: #F4F4F4;
    --white: #ffffff;
    --primary: #353c6b;
    --primary-light: #6570b5;
    --primary-lighter: #E8DFF3;
    --primary-lighter-2: #d8c6ef;
    --primary-variant: #424B85;
    --secondary: #ababab;
    --secondary-light: #d6d6d6;
    --secondary-lighter: #eeeeee;
    --secondary-darker: #818181;
    --accent: #1670ca;

    --red: #d93f3f;
    --red-lighter: #ffc8c8;
    --green: #7bc750;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    color: var(--text);
    background: var(--background);
}

a {
    color: inherit;
    text-decoration: none;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}


input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}