* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100svh;
  width: 100svw;
}

button {
  cursor: pointer;
  font-size: 0.875rem !important;
}

a {
  text-decoration: none;
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  html,
  body {
    font-size: 12px;
  }
}

@media (max-width: 315px) {
  html,
  body {
    font-size: 10px;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-rightwards {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #bfbfbf;
  border-radius: 16px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #999999;
}

.privacy-policy-container {
  background: url('/images/auth-background.svg');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: justify;
}

.privacy-policy-card {
  height: max-content;
  padding: 2.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0px 4px 16px 0px #00000040;
  animation: show-downwards 1s ease-out, fade-in 1s ease-out;
}

.privacy-policy-header {
  color: #4d4d4d;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
}

.privacy-policy-divider {
  width: 70%;
  margin: 0.25rem 0 1.25rem;
  border: 2px solid #f36406;
}

.privacy-policy-content {
  hyphens: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-position: inside;

  li::marker {
    font-weight: bold;
  }

  ul > li {
    list-style-type: disc;
  }

  div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  ol > li {
    list-style-type: none;
  }
}
