@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html,
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    background-color: #fbfbfb;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(231, 231, 231, 0);
    -moz-tap-highlight-color: rgba(230, 230, 230, 0);
}

::-moz-selection {
    color: rgb(255, 255, 255);
    background: #ff6f7e;
}

::selection {
    color: rgb(255, 255, 255);
    background: #ff6f7e;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 1px;
}

input[type="date"] {
    background-color: #fb415400;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 10px;
    /* transform: translate(-50%, -50%); */
    font-family: "Roboto Mono", monospace;
    color: #000000;
    width: 170px;
    font-size: 13px;
    border: solid #fb4154 1px;
    outline: none;
    border-radius: 7px;
}

input {
    padding: 5px;
    border-radius: 7px;
    border: solid #d2d2d2 3px;
}

::-webkit-calendar-picker-indicator {
    background-color: #ffffff;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bigdiv {
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
    flex: 1;
}