@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --primaryColor: #3987D5;
    --whiteColor: #FFFFFF;
    --textLightColor: rgba(42, 65, 93, 0.5);
    --textDarkColor: #2A415D;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: auto;
}

.cursor-pointer {
    cursor: pointer;
}

body{
    width: 100%;
    height: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}