html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-width: 1024px;
  background: #000a19;
  color: #eef3fc;
  font-size: calc(10px + 0.2vw);
  font-weight: 400;
  font-family: "Figtree";
}

.app-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

a {
  text-align: unset;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #1f2938;
}
.header .links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .links .link {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 4px;
  color: #8798b2;
  transition: all 0.2s linear;
}
.header .links .link:hover {
  color: #eef3fc;
  text-decoration: none;
}
.header .links .link:hover .icon {
  fill: #eef3fc;
}
.header .links .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}
.header .links .icon {
  transition: all 0.2s linear;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.form {
  position: relative;
}
.form .cortex-logo {
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
}
.form .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000a19;
  padding: 64px 64px 48px;
  border: 1px solid #1f2938;
  border-radius: 12px;
  z-index: 2;
}
.form .title {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  color: #eef3fc;
  margin: 0 0 4px;
}
.form .subtitle {
  max-width: 298px;
  font-size: 16px;
  line-height: 24px;
  color: #8798b2;
  text-align: center;
}
.form .buttons-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 40px 0 0;
}
.form .button {
  width: 100%;
}

.blur {
  position: absolute;
}
.blur.green {
  left: -150px;
  top: -10%;
  animation: blurimation 3s ease-in-out infinite;
}
.blur.purple {
  right: -160px;
  bottom: -10%;
  animation: blurimation 3s ease-in-out -2s infinite;
}

.email-input {
  height: 46px;
  display: block;
  border: 0;
  margin: 0 0 16px;
  padding: 0 16px;
  background: #344156;
  color: #8798b2;
  border-radius: 6px;
}
.email-input::placeholder {
  color: #8798b2;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #8798b2;
  line-height: 20px;
  font-size: 14px;
  margin: 16px 0;
}
.divider::before, .divider::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #1f2938;
  margin: 0 8px;
}

.button {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Figtree";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #344156;
  color: #eef3fc;
  padding: 0 8px;
  border: 0;
  outline: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s linear;
  cursor: pointer;
  position: relative;
}
.button:hover {
  text-decoration: none;
  background: #3d4d66;
}
.button.highlight {
  color: #181b25;
  background: #4dffa6;
  text-decoration: none;
}
.button.highlight:hover {
  background: #83fcbf;
}
.button.icon {
  color: #181b25;
  margin-right: 8px;
}
.button.loading {
  pointer-events: none;
}
.button.loading .dot-pulse {
  display: flex;
}
.button .button-text {
  display: flex;
  align-items: center;
  gap: 4px;
}
.button .dot-pulse {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.dot-pulse .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0;
  animation: dot-pulse 1.4s infinite ease-in-out;
}
.dot-pulse .dot:nth-child(1) {
  animation-delay: 0s;
}
.dot-pulse .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot-pulse .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.footer {
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #8798b2;
  margin: 0 0 24px;
}

@keyframes blurimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes dot-pulse {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}