@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes grow {
  0% {
    width: 74px;
    height: 74px;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 132px;
    height: 132px;
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

.fadeIn {
  animation: 0.5s fadeIn forwards;
}

.fadeOut {
  animation: 0.5s fadeOut forwards;
}

.page-transition-reversed .fadeIn {
  animation: 0.5s fadeInReverse forwards;
}

.page-transition-reversed .fadeOut {
  animation: 0.5s fadeOutReverse forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    margin-left: 20px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    margin-left: 0;
  }
  to {
    margin-left: -20px;
    opacity: 0;
  }
}

@keyframes fadeInReverse {
  from {
    opacity: 0;
    margin-left: -20px;

    transform: translate(-20px, 0);
  }
  to {
    margin-left: 0px;
    opacity: 1;
  }
}

@keyframes fadeOutReverse {
  from {
    opacity: 1;
    margin-left: 0px;
  }
  to {
    margin-left: 20px;
    opacity: 0;
  }
}

@font-face {
  font-family: "Roobert";
  src: url("/fonts/Roobert-Regular.woff2") format("woff2"),
    url("/fonts/Roobert-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("/fonts/Roobert-Medium.woff2") format("woff2"),
    url("/fonts/Roobert-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("/fonts/Roobert-SemiBold.woff2") format("woff2"),
    url("/fonts/Roobert-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0c0c0c;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input {
  font-family: "Roobert";
}

.wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 380px;
  width: 92%;
}

.box {
  color: #0c0c0c;
  background-color: #fcfcfc;

  display: flex;
  flex-direction: column;
  padding: 40px 24px 24px;
  border-radius: 24px;
}

.animated-halo-chip {
  width: 64px;
  position: relative;
  margin: 10px auto 10px;
}
.animated-halo-chip img,
.animated-halo-chip svg {
  z-index: 2;
  position: relative;
}
.animated-halo-chip:before,
.animated-halo-chip:after {
  z-index: 1;
  content: "";
  width: 56px;
  height: 56px;
  border: 1px solid #fcfcfc;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 3s grow infinite linear;
}
.animated-halo-chip:after {
  animation-delay: 1.5s;
}

.wrapper h1 {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.logo {
  color: #fcfcfc;
  display: block;
  margin: 0 auto 20px;
}

.wrapper p {
  opacity: 0.8;
  margin: 0 auto 20px;
  text-align: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.pk {
  display: flex;
  position: relative;
}

.pk label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700px;
  opacity: 0.5;
  position: absolute;
  left: 16px;
  top: 14px;
}

input,
button {
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  display: block;
  outline: none;
  border: none;
}

.pk input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 32px 16px 12px;
  color: #0c0c0c;
  border-radius: 6px;
  font-size: 12px;
}

.pk button {
  position: absolute;
  top: 50%;
  right: 1px;
  padding: 0 20px 0 12px;
  transform: translateY(-50%);
  color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 80px;
  height: calc(100% - 2px);
  z-index: 2;
  background: linear-gradient(
    to left,
    #fcfcfc,
    #fcfcfc,
    #fcfcfc,
    rgba(255, 255, 255, 0)
  );
  border-radius: 6px;
}

.pk button svg {
  opacity: 0.3;
  transition: 0.2s opacity;
}

.pk button:hover svg {
  opacity: 0.6;
}

.pk button:hover {
  cursor: pointer;
}

.pk button svg {
  width: 14px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: #0c0c0c;
  color: #fcfcfc;
  line-height: 50px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.2s background-color;
  text-transform: uppercase;
}

.button:hover {
  background: rgba(13, 13, 13, 0.8);
}
