*{
    margin: 0;
    padding: 0;
    outline: none;
}

::placeholder {
    color: white;
    opacity: 1;
}

:-ms-input-placeholder {
    color: white;
}

::-ms-input-placeholder {
    color: white;
}

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

.c-purple{
    color: #625dfa;
}

fieldset{
    border: none;
    padding: 0;
    margin: 0;
}

select{
    background-color: transparent;
    color: white;
    border: none;
    padding: 5px 0;
    width: 100%;
}

img{
    pointer-events: none;
}

*::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #F9F8FE;
    cursor: pointer;
}

*::-webkit-scrollbar-track{
    border-left: 0px solid #000;
    background-color: #F9F8FE;
}

*::-webkit-scrollbar-thumb{
    background: #5755d9;
    border-radius: 50px;
}

*::-webkit-scrollbar-thumb:hover{
    background: #5188d6;
}

html {
    scroll-behavior: smooth;
}

*::selection{
    background-color: #5755d9;
    color: white;
}