.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 #00264B;
  border-radius: 14px;
  width: 450px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  background-color: rgb(236, 236, 236);
  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: #fff;
  transition: 0.5s ease;
}
.modal-auth__close:hover {
  color: rgb(236, 89.9551569507, 0);
}
.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(236, 89.9551569507, 0);
  text-decoration: none;
}
.modal-auth__link:focus {
  color: rgb(236, 89.9551569507, 0);
  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 #00264B;
  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(208, 122, 9);
}
.modal-auth .bx-system-auth-form input[type=text]:focus,
.modal-auth .bx-system-auth-form input[type=password]:focus {
  border-color: rgb(208, 122, 9);
}
.modal-auth .bx-system-auth-form input[type=submit] {
  padding: 5px 15px;
  color: white;
  background-color: #FF7520;
  border: 2px solid #FF7520;
  border-radius: 8px;
  transition-duration: 0.5s;
}
.modal-auth .bx-system-auth-form input[type=submit]:hover {
  color: white;
  background-color: rgb(236, 89.9551569507, 0);
}
.modal-auth .bx-system-auth-form input[type=submit]:focus {
  color: white;
  background-color: rgb(236, 89.9551569507, 0);
}

.auth-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.auth-block .auth-link:hover a {
  color: #FF7520;
}
.auth-block .auth-link:hover svg {
  fill: #FF7520;
}
.auth-block .auth-link:focus a {
  color: #FF7520;
}
.auth-block .auth-link:focus svg {
  fill: #FF7520;
}

@media screen and (max-width: 576px) {
  .modal-auth__content {
    width: 300px;
  }
}

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