/* [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;
  }
}

/*# sourceMappingURL=src_components_auth_hoc-tap-login-modal_module_17nowll.css.map*/