/* [project]/src/components/auth/hoc-tap-login-modal.module.css [app-client] (css) */
.hoc-tap-login-modal-module__I7VWQG__backdrop {
  z-index: 999999;
  -webkit-backdrop-filter: blur(12px);
  background: #01062de0;
  justify-content: center;
  align-items: center;
  padding: 16px;
  animation: .22s ease-out forwards hoc-tap-login-modal-module__I7VWQG__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.hoc-tap-login-modal-module__I7VWQG__modalCard {
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(#081a5c 0%, #020933 100%);
  border: 2px solid #31ecff;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 24px;
  animation: .25s cubic-bezier(.16, 1, .3, 1) forwards hoc-tap-login-modal-module__I7VWQG__scaleUp;
  position: relative;
  box-shadow: 0 24px 60px #000c, 0 0 35px #31ecff59, inset 0 0 15px #31ecff26;
}

.hoc-tap-login-modal-module__I7VWQG__modalCard * {
  box-sizing: border-box;
}

.hoc-tap-login-modal-module__I7VWQG__closeButton {
  color: #31ecff;
  cursor: pointer;
  background: #ffffff14;
  border: 1px solid #31ecff59;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 14px;
  right: 14px;
}

.hoc-tap-login-modal-module__I7VWQG__closeButton:hover, .hoc-tap-login-modal-module__I7VWQG__closeButton:focus-visible {
  color: #fff;
  background: #31ecff40;
  border-color: #31ecff;
  outline: none;
  transform: scale(1.08);
}

.hoc-tap-login-modal-module__I7VWQG__header {
  text-align: center;
  margin-bottom: 20px;
}

.hoc-tap-login-modal-module__I7VWQG__iconBadge {
  color: #31ecff;
  background: radial-gradient(circle, #31ecff40 0%, #020868cc 100%);
  border: 1.5px solid #31ecff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  display: inline-flex;
  box-shadow: 0 0 18px #31ecff80;
}

.hoc-tap-login-modal-module__I7VWQG__title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 0 12px #31ecffb3;
  margin: 0 0 6px;
  font-family: UTM Nokia, UTM Cafeta, Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.hoc-tap-login-modal-module__I7VWQG__subtitle {
  color: #b3dcff;
  margin: 0;
  font-family: Arial, Helvetica Neue, sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
}

.hoc-tap-login-modal-module__I7VWQG__alert {
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  font-family: Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
  animation: .2s hoc-tap-login-modal-module__I7VWQG__fadeIn;
}

.hoc-tap-login-modal-module__I7VWQG__alertError {
  color: #fca5a5;
  background: #ef444433;
  border: 1px solid #ef4444;
}

.hoc-tap-login-modal-module__I7VWQG__alertInfo {
  color: #bae6fd;
  background: #0ea5e933;
  border: 1px solid #38bdf8;
}

.hoc-tap-login-modal-module__I7VWQG__alertSuccess {
  color: #a7f3d0;
  background: #10b98133;
  border: 1px solid #34d399;
}

.hoc-tap-login-modal-module__I7VWQG__form {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.hoc-tap-login-modal-module__I7VWQG__field {
  text-align: left;
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.hoc-tap-login-modal-module__I7VWQG__field label {
  color: #7bf3ff;
  letter-spacing: .2px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.hoc-tap-login-modal-module__I7VWQG__inputWrap {
  width: 100%;
  position: relative;
}

.hoc-tap-login-modal-module__I7VWQG__input {
  color: #fff;
  background: #020868b3;
  border: 1.5px solid #31ecff59;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all .2s;
}

.hoc-tap-login-modal-module__I7VWQG__input::placeholder {
  color: #fff6;
}

.hoc-tap-login-modal-module__I7VWQG__input:focus {
  background: #020868f2;
  border-color: #31ecff;
  box-shadow: 0 0 14px #31ecff73;
}

.hoc-tap-login-modal-module__I7VWQG__input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.hoc-tap-login-modal-module__I7VWQG__passwordInput {
  padding-right: 44px;
}

.hoc-tap-login-modal-module__I7VWQG__togglePasswordBtn {
  color: #31ecffb3;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: color .15s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.hoc-tap-login-modal-module__I7VWQG__togglePasswordBtn:hover {
  color: #31ecff;
}

.hoc-tap-login-modal-module__I7VWQG__formOptions {
  justify-content: space-between;
  align-items: center;
  margin-top: -2px;
  display: flex;
}

.hoc-tap-login-modal-module__I7VWQG__checkboxLabel {
  color: #ffffffd9;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  display: inline-flex;
}

.hoc-tap-login-modal-module__I7VWQG__checkboxLabel input[type="checkbox"] {
  accent-color: #31ecff;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.hoc-tap-login-modal-module__I7VWQG__forgotBtn {
  color: #31ecff;
  cursor: pointer;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-decoration: underline;
  transition: color .15s;
}

.hoc-tap-login-modal-module__I7VWQG__forgotBtn:hover {
  color: #fff;
  text-shadow: 0 0 8px #31ecffcc;
}

.hoc-tap-login-modal-module__I7VWQG__forgotBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
  text-decoration: none;
}

.hoc-tap-login-modal-module__I7VWQG__termsLabel {
  color: #ffffffbf;
  cursor: pointer;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
  font-family: Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1.35;
  display: inline-flex;
}

.hoc-tap-login-modal-module__I7VWQG__termsLabel input[type="checkbox"] {
  accent-color: #31ecff;
  cursor: pointer;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.hoc-tap-login-modal-module__I7VWQG__termsLabel a {
  color: #31ecff;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: color .15s;
}

.hoc-tap-login-modal-module__I7VWQG__termsLabel a:hover {
  color: #fff;
}

.hoc-tap-login-modal-module__I7VWQG__submitBtn {
  color: #020868;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  background: linear-gradient(90deg, #00c6ff 0%, #31ecff 100%);
  border: 1px solid #7bf3ff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  margin-top: 6px;
  font-family: UTM Nokia, UTM Cafeta, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  box-shadow: 0 0 20px #31ecff73;
}

.hoc-tap-login-modal-module__I7VWQG__submitBtn:hover:not(:disabled) {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 0 28px #31ecffbf;
}

.hoc-tap-login-modal-module__I7VWQG__submitBtn:active:not(:disabled) {
  transform: translateY(0);
}

.hoc-tap-login-modal-module__I7VWQG__submitBtn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.hoc-tap-login-modal-module__I7VWQG__loadingSpinnerWrap {
  align-items: center;
  gap: 8px;
  display: flex;
}

.hoc-tap-login-modal-module__I7VWQG__spinner {
  border: 2px solid #0208684d;
  border-top-color: #020868;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .7s linear infinite hoc-tap-login-modal-module__I7VWQG__spin;
}

.hoc-tap-login-modal-module__I7VWQG__registerFooter {
  color: #ffffffbf;
  text-align: center;
  margin-top: 14px;
  font-family: Arial, sans-serif;
  font-size: 13.5px;
  line-height: 1.4;
}

.hoc-tap-login-modal-module__I7VWQG__registerFooter a {
  color: #31ecff;
  text-underline-offset: 3px;
  font-weight: 700;
  text-decoration: underline;
  transition: color .15s;
}

.hoc-tap-login-modal-module__I7VWQG__registerFooter a:hover {
  color: #fff;
  text-shadow: 0 0 8px #31ecffcc;
}

@keyframes hoc-tap-login-modal-module__I7VWQG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hoc-tap-login-modal-module__I7VWQG__scaleUp {
  from {
    opacity: 0;
    transform: scale(.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hoc-tap-login-modal-module__I7VWQG__spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .hoc-tap-login-modal-module__I7VWQG__modalCard {
    border-radius: 16px;
    padding: 24px 20px 20px;
  }

  .hoc-tap-login-modal-module__I7VWQG__title {
    font-size: 19px;
  }
}

/* [project]/src/app/hoc-tap/register/register.module.css [app-client] (css) */
.register-module__qzo3ya__page {
  color: #fff;
  background: url("/assets/images/part-5.jpg") center / 100% 100% no-repeat;
  min-height: 100vh;
  font-family: Arial, Helvetica Neue, sans-serif;
}

.register-module__qzo3ya__main {
  place-items: center;
  min-height: 100vh;
  padding: 120px 20px 60px;
  display: grid;
}

.register-module__qzo3ya__panel {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: #02063af2;
  border: 1px solid #31ecff59;
  border-radius: 24px;
  width: min(680px, 100%);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 24px 70px #00002d5c;
}

.register-module__qzo3ya__heading p {
  color: #31ecff;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
}

.register-module__qzo3ya__heading h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
}

.register-module__qzo3ya__heading span {
  color: #ffffffb8;
  margin-top: 10px;
  display: block;
}

.register-module__qzo3ya__form {
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  display: flex;
}

.register-module__qzo3ya__form label {
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.register-module__qzo3ya__form small {
  color: #ffffff8f;
  font-weight: 400;
}

.register-module__qzo3ya__form input:not([type="checkbox"]) {
  color: #081466;
  width: 100%;
  min-height: 48px;
  font: inherit;
  background: #fffffff5;
  border: 1px solid #0000;
  border-radius: 12px;
  outline: none;
  padding: 0 14px;
  font-family: Arial, Helvetica Neue, sans-serif;
}

.register-module__qzo3ya__form input:focus {
  border-color: #31ecff;
  box-shadow: 0 0 0 3px #31ecff33;
}

.register-module__qzo3ya__passwords {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.register-module__qzo3ya__terms {
  color: #ffffffc2;
  align-items: flex-start;
  line-height: 1.45;
  flex-direction: row !important;
  font-weight: 400 !important;
}

.register-module__qzo3ya__terms input {
  accent-color: #31ecff;
  width: 18px;
  height: 18px;
  margin: 2px 2px 0 0;
}

.register-module__qzo3ya__terms a {
  color: #31ecff;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: color .15s;
}

.register-module__qzo3ya__terms a:hover, .register-module__qzo3ya__terms a:focus-visible {
  color: #fff;
}

.register-module__qzo3ya__form button {
  color: #04115f;
  min-height: 50px;
  font: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, #31ecff, #9af7ff);
  border: 0;
  border-radius: 14px;
  margin-top: 4px;
  font-family: Arial, Helvetica Neue, sans-serif;
  font-weight: 600;
  transition: transform .16s, box-shadow .16s;
}

.register-module__qzo3ya__form button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px #31ecff47;
}

.register-module__qzo3ya__form button:disabled {
  cursor: wait;
  opacity: .7;
}

.register-module__qzo3ya__message {
  color: #dffcff;
  background: #31ecff1a;
  border: 1px solid #31ecff3d;
  border-radius: 12px;
  margin: 18px 0 0;
  padding: 12px 14px;
}

.register-module__qzo3ya__loginLink {
  color: #ffffffb3;
  text-align: center;
  margin: 20px 0 0;
}

.register-module__qzo3ya__loginLink a {
  color: #31ecff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .register-module__qzo3ya__main {
    align-items: start;
    padding: 100px 14px 40px;
  }

  .register-module__qzo3ya__panel {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .register-module__qzo3ya__passwords {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_1hl76y6._.css.map*/