.modal-auth {
  display: none;
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  touch-action: none;
}
.modal-auth.active {
  display: flex;
}
.modal-auth__content {
  border: 1px solid rgb(40, 86, 188);
  border-radius: 14px;
  width: 450px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  background-color: white;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.modal-auth__close {
  font-weight: bold;
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 20px;
  cursor: pointer;
  color: white;
  transition: 0.5s ease;
}
.modal-auth__close:hover {
  color: rgb(40, 86, 188);
}
.modal-auth__title {
  font-size: 2rem;
  font-weight: bold;
}
.modal-auth__link-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}
.modal-auth__link {
  color: black;
}
.modal-auth__link:hover {
  color: rgb(40, 86, 188);
  text-decoration: none;
}
.modal-auth__link:focus {
  color: rgb(40, 86, 188);
  text-decoration: none;
}
.modal-auth .bx-system-auth-form {
  width: 100%;
}
.modal-auth .bx-system-auth-form table {
  width: 100%;
}
.modal-auth .bx-system-auth-form input {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
}
.modal-auth .bx-system-auth-form p {
  margin-bottom: 0.5rem !important;
}
.modal-auth .bx-system-auth-form tr:nth-child(3),
.modal-auth .bx-system-auth-form tr:nth-child(5),
.modal-auth .bx-system-auth-form tr:nth-child(6),
.modal-auth .bx-system-auth-form tr:nth-child(7) {
  display: none;
}
.modal-auth .bx-system-auth-form input[type=text],
.modal-auth .bx-system-auth-form input[type=password] {
  padding: 5px 15px;
  background-color: white;
  color: black;
  border: 1px solid rgb(40, 86, 188);
  border-radius: 8px;
  transition-duration: 0.5s;
}
.modal-auth .bx-system-auth-form input[type=text]:hover,
.modal-auth .bx-system-auth-form input[type=password]:hover {
  border-color: rgb(40, 86, 188);
}
.modal-auth .bx-system-auth-form input[type=text]:focus,
.modal-auth .bx-system-auth-form input[type=password]:focus {
  border-color: rgb(40, 86, 188);
}
.modal-auth .bx-system-auth-form input[type=submit] {
  padding: 5px 15px;
  color: white;
  background-color: rgb(40, 86, 188);
  border: 2px solid rgb(40, 86, 188);
  border-radius: 8px;
  transition-duration: 0.5s;
  cursor: pointer;
}
.modal-auth .bx-system-auth-form input[type=submit]:hover {
  color: white;
  background-color: rgb(40, 86, 188);
}
.modal-auth .bx-system-auth-form input[type=submit]:focus {
  color: white;
  background-color: rgb(40, 86, 188);
}

.btn-about {
  color: rgb(40, 86, 188) !important;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  border-radius: 2rem;
  background: white;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-about:hover {
  background: transparent;
  color: rgb(40, 86, 188) !important;
  text-decoration: underline !important;
}
.auth-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.auth-block .auth-link svg {
  fill: rgb(40, 86, 188);
  width: 15px;
  height: 15px;
}
.auth-block .auth-link:hover a {
  color: rgb(40, 86, 188);
}
.auth-block .auth-link:hover svg {
  fill: rgb(40, 86, 188);
}
.auth-block .auth-link:focus a {
  color: rgb(40, 86, 188);
}
.auth-block .auth-link:focus svg {
  fill: rgb(40, 86, 188);
}

@media screen and (max-width: 767px) {
  .auth-block {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    gap: 1rem;
  }
  .btn-about {
    margin: 0;
  }
}
@media screen and (max-width: 576px) {
  .modal-auth__content {
    width: 300px;
  }
}

/*# sourceMappingURL=modalAuth.css.map */
