* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}
.h-55 {
  height: 55px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: #171717;
  color: white;
  display: flex;
  display: grid;
  height: 100vh;
  place-items: center;
}

a {
  color: white;
}
a:hover {
  color: #9747ff;
}

p {
  margin-bottom: 15px;
}

strong {
  font-weight: 700;
}

.page {
  width: 100%;
  max-width: 600px;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.page__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page__container h1 {
  font-size: 24px;
  font-weight: 600;
}
.page__container h2 {
  font-size: 18px;
  font-weight: 600;
}

.logo {
  display: flex;
}
.logo img {
  height: 50px;
}

.nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.0392156863);
  background: rgba(255, 255, 255, 0.0196078431);
  gap: 5px;
}
.nav li {
  display: flex;
  width: 100%;
}
.nav a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  transition: all ease 0.3s;
  gap: 10px;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.062745098);
}
.nav a i {
  font-size: 24px;
  color: #9747ff;
}

a.privacy-policy {
  margin: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5019607843);
}

/*# sourceMappingURL=main.css.map */
