@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: Inter, serif;
  font-size: 14px;
  margin: 0;
  background-color: #001621;
  color: #fff;
  --accent: #ff6300;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
}

input,
textarea {
  background-color: #2f343a;
}

#netring-bg {
  position: absolute;
}

.coming-soon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  min-height: 100vh;
}
@supports (-webkit-touch-callout: none) {
  .coming-soon {
    min-height: 100svh;
  }
}
.coming-soon h1,
.coming-soon h2 {
  text-align: center;
  margin: 0;
}
.coming-soon h1 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #011521;
}
.coming-soon h2 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 15px;
}
.coming-soon .contact-form {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  backdrop-filter: blur(5px);
  background: rgba(234, 252, 255, 0.2);
  background: linear-gradient(0, rgba(166, 190, 194, 0.2), rgba(234, 252, 255, 0.2));
  border-radius: 10px;
  border: 1px solid rgba(234, 252, 255, 0.2);
  box-shadow: 0 0 10px #011521, inset 0 0 20px rgba(139, 199, 240, 0.2);
}
.coming-soon .form-group {
  margin-bottom: 8px;
}
.coming-soon .field-error {
  color: #ff0000;
  font-size: 12px;
  margin: 4px 0 0 2px;
}
.coming-soon form {
  display: block;
  max-width: 400px;
}
.coming-soon input,
.coming-soon textarea {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
  outline: none;
  color: #ffffff;
  width: 100%;
  font-size: 14px;
  min-height: 30px;
  background: none;
  margin: 0;
  box-sizing: border-box;
}
.coming-soon input:placeholder-shown, .coming-soon input::placeholder,
.coming-soon textarea:placeholder-shown,
.coming-soon textarea::placeholder {
  color: rgba(255, 255, 255, 0.2666666667);
}
.coming-soon textarea {
  height: 100px;
  width: 100%;
  resize: none;
}
.coming-soon button {
  width: 102px;
  font-size: 16px;
  font-weight: 200;
  background: rgba(32, 82, 179, 0.6);
  margin: 20px auto 0;
  display: block;
  color: #fff;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #2052b3;
  transition: 0.2s;
  box-shadow: 0 0 15px #2052b3 inset;
}
.coming-soon button:hover {
  background: #2052b3;
}
.coming-soon .loader-wrapper {
  width: 100px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #2052b3;
  background: #2052b3;
  margin: 20px auto 0;
}
.coming-soon .equation {
  display: flex;
  width: 100%;
}
.coming-soon .equation label {
  padding: 0 4px 0 2px;
  white-space: nowrap;
  line-height: 32px;
  height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3333333333);
}

.pattern {
  position: absolute;
  width: 100%;
  height: 100vh;
  opacity: 0.2;
  background-repeat: repeat;
  background-size: 5px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAZQTFRF////AAAAVcLTfgAAAAJ0Uk5T/wDltzBKAAAAEElEQVR4nGOsd2T8fxAXAgDr+RCLHTqk4gAAAABJRU5ErkJggg==");
}
@supports (-webkit-touch-callout: none) {
  .pattern {
    height: 100svh;
  }
}

.message-sent {
  text-align: center;
  color: #51c973;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.8666666667);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 0.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=coming-soon.css.map */
