body {
  background: #f2f6fa;
  font-family: "Rubik", sans-serif;
  margin: 0;
  --cursor-color: #4f9cfb;
  overscroll-behavior: none;
  overflow: hidden;
}

@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: var(--cursor-color);
  }
}

@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: var(--cursor-color);
  }
}

@-webkit-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: var(--cursor-color);
  }
}

@-ms-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: var(--cursor-color);
  }
}

@-o-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #1f74df;
  }
}

button {
  font-family: "Rubik", sans-serif !important;
  font-weight: 400 !important;
}

input {
  font-family: "Rubik", sans-serif !important;
  font-weight: 400 !important;
}

label {
  font-family: "Rubik", sans-serif !important;
  font-weight: 400 !important;
}

.blinking-cursor {
  font-weight: 300;
  font-size: 40px;
  color: var(--cursor-color);
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

.MuiPaper-root {
  position: fixed !important;
  top: 64px !important;
}

.notistack-SnackbarContainer {
  margin-bottom: 80px;
}
