@font-face {
  font-family: "San Francisco";
  src: url("/fonts/SF-Pro.ttf");
}
@keyframes Reveal {
  from {
    opacity: 0;
    transform: translate(-50%, -5px);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }
  80% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -5px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes Welcome {
  0% {
    opacity: 0;
    top: 100px;
  }
  10% {
    opacity: 0;
  }
  60% {
    opacity: 1;
    top: 100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes Animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
@font-face {
  font-family: "San Francisco";
  src: url("/fonts/SF-Pro.ttf");
}
.componentSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #86868b;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  outline: none;
}
.componentSelect:focus {
  border-color: #2997ff;
}

label.select {
  position: relative;
  display: inline-block;
  width: 200px;
}

.selectSvg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.sprites {
  display: none;
}

option {
  background: white;
  color: #1d1d1f;
}

.inputWrapper {
  position: relative;
}
.inputWrapper:nth-child(2) {
  margin-block: 10px;
}
.inputWrapper .signUpInput {
  width: 100%;
  padding-block: 1.5em 8px;
  padding-left: 10px;
  font-size: 16px;
  outline: none;
  border: 1px solid #86868b;
  border-radius: 8px;
  color: #1d1d1f;
}
.inputWrapper .inputPh {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #86868b;
  transition: all 0.2s ease;
  pointer-events: none;
}
.inputWrapper:focus-within .signUpInput {
  outline: 2px solid #dc0000;
  outline-offset: 1px;
}
.inputWrapper:focus-within .inputPh {
  font-size: 13px;
  transform: translate(2px, -17px) !important;
}

body {
  font-family: "San Francisco" !important;
  overflow: hidden;
}

.version {
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Consolas";
  color: #1d1d1f;
  border: 1px solid #1d1d1f;
  border-radius: 4px;
  font-size: 14px;
  padding: 0.4em 1em;
  margin: 10px 0 0 10px;
}

.date {
  position: fixed;
  top: 0;
  right: 0;
  border: 1px solid #1d1d1f;
  font-family: "Consolas";
  border-radius: 4px;
  font-size: 14px;
  padding: 0.4em 1em;
  margin: 10px 10px 0 0;
}

.root {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.homeIntro {
  text-align: center;
}
.homeIntro h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: #1d1d1f;
  position: relative;
  opacity: 0;
  animation: Welcome 4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1s;
  z-index: 2;
}
.homeIntro p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: #494949;
  margin-block: 3% 10%;
  font-weight: 500;
}

.signUp {
  width: 100%;
}
.signUp .formWrapper {
  max-width: 300px;
  margin: auto;
}
.signUp .signUpSubmit {
  background-color: #2997ff;
  border-radius: 25px;
  color: white;
  border: none;
  font-size: clamp(13px, 1.5vw, 16px);
  padding: 0.5em 0.9em;
  border: 1px solid #2997ff;
  cursor: pointer;
  margin: auto;
  font-weight: 500;
  font-family: "San Francisco";
}
.signUp .signUpSubmit:hover {
  background-color: transparent;
  color: #2997ff;
}

.arrow {
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0.5;
  margin-bottom: 40px;
}
.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #494949;
  border-right: 2px solid #494949;
  border-radius: 2px;
  transform: rotate(45deg);
  margin: -10px;
  animation: Animate 2s infinite;
}
.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}
.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

.svgAnimWrapper {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.svgAnimWrapper svg {
  transform: rotate(0deg);
  animation: Rotate 360s infinite linear;
}
.svgAnimWrapper svg .path {
  fill: rgba(134, 134, 139, 0.1);
}

.topTransform {
  font-size: 13px;
  transform: translate(2px, -17px) !important;
}

.alertMessage {
  display: flex;
  position: relative;
  align-items: center;
  gap: 5px;
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 1em;
  overflow: hidden;
  animation: Reveal 3s ease forwards;
  background-color: white;
}
.alertMessage .text {
  color: #494949;
}
.alertMessage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
}
.alertMessage.success::before {
  background-color: #0ac986;
}
.alertMessage.error::before {
  background-color: #fe7a5a;
}

.loadingBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1;
  animation: fadeOut 5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 2s;
  pointer-events: none;
}

.hidden {
  opacity: 0;
  transform: translateY(10px);
}

.shown {
  transition: all 0.25s ease;
  opacity: 1;
  transform: translateY(0px);
}

@media (prefers-reduced-motion) {
  .shown {
    transition: none;
  }
}/*# sourceMappingURL=style.css.map */