input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  border: 1px solid rgb(22, 25, 37);
  -webkit-text-fill-color: rgb(22, 25, 37);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.bl-overlay {
  position: fixed;
  top: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 33, 0.5);
  backdrop-filter: blur(6px);
  z-index: 30;
}
.bl-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 35;
}
.bl-overlay .modal-login {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 104px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-login.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-login .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/auth/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-login .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-login .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bl-overlay .modal-login .bl-text h2 {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-login .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.bl-overlay .modal-login .form .bl-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
}
.bl-overlay .modal-login .form .bl-input .text-email,
.bl-overlay .modal-login .form .bl-input .text-pass {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: rgb(22, 25, 37);
  margin-left: 16px;
}
.bl-overlay .modal-login .form .bl-input input {
  width: 100%;
  height: 47px;
  padding: 13px 40px 13px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgb(228, 235, 248);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(22, 25, 37);
  outline: none;
}
.bl-overlay .modal-login .form .bl-input input::-webkit-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form .bl-input input::-moz-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form .bl-input input:-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form .bl-input input::-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form .bl-input input::placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-login .form .bl-input input:focus {
  border: 1px solid var(--color-border-modal);
}
.bl-overlay .modal-login .form .bl-input button {
  display: none;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 14px;
  -webkit-mask-image: url("/assets/img/auth/visibility-v1");
          mask-image: url("/assets/img/auth/visibility-v1");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--bg-btn-modal);
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-login .form .bl-input button.view {
  -webkit-mask-image: url("/assets/img/auth/visibility_off-v1.svg");
          mask-image: url("/assets/img/auth/visibility_off-v1.svg");
}
.bl-overlay .modal-login .form .bl-forgot-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.bl-overlay .modal-login .form .bl-forgot-password .forgot-password {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 0 16px 0 16px;
  opacity: 0px;
  background: transparent;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
  color: rgb(22, 25, 37);
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-login .form .bl-forgot-password .forgot-password:hover {
  opacity: 0.8;
}
.bl-overlay .modal-login .btn-signin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  padding: 11px 149px;
  border-radius: 12px;
  background: var(--bg-btn-modal);
  border: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-wrap: nowrap;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.bl-overlay .modal-login .btn-signin:hover {
  opacity: 0.8;
}
.bl-overlay .modal-login .bl-text-sign-up {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(139, 150, 160);
}
.bl-overlay .modal-login .bl-text-sign-up button {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: rgb(22, 25, 37);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.bl-overlay .modal-login .bl-text-sign-up button:hover {
  opacity: 0.8;
}
.bl-overlay .modal-forgot-pass {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 104px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-forgot-pass.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-forgot-pass .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/auth/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-forgot-pass .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-forgot-pass .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bl-overlay .modal-forgot-pass .bl-text h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-forgot-pass .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
  height: 100%;
}
.bl-overlay .modal-forgot-pass .form .bl-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.bl-overlay .modal-forgot-pass .form .bl-input .email-input {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: rgb(22, 25, 37);
  margin-left: 16px;
}
.bl-overlay .modal-forgot-pass .form .bl-input input {
  width: 100%;
  height: 47px;
  padding: 13px 16px 13px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgb(228, 235, 248);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(22, 25, 37);
  outline: none;
}
.bl-overlay .modal-forgot-pass .form .bl-input input::-webkit-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form .bl-input input::-moz-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form .bl-input input:-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form .bl-input input::-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form .bl-input input::placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .form .bl-input input:focus {
  border: 1px solid var(--color-border-modal);
}
.bl-overlay .modal-forgot-pass .form .btn-send-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  padding: 11px 149px;
  border-radius: 12px;
  background: var(--bg-btn-modal);
  border: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-wrap: nowrap;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.bl-overlay .modal-forgot-pass .form .btn-send-reset:hover {
  opacity: 0.8;
}
.bl-overlay .modal-forgot-pass .bl-text-forgot {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-forgot-pass .bl-text-forgot button {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: rgb(22, 25, 37);
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: transparent;
}
.bl-overlay .modal-forgot-pass .bl-text-forgot button:hover {
  opacity: 0.8;
}
.bl-overlay .modal-reset-pass {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 104px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-reset-pass.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-reset-pass .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/auth/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-reset-pass .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-reset-pass .icon-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(245, 248, 255);
}
.bl-overlay .modal-reset-pass .icon-email::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: var(--color-icon-modal);
  -webkit-mask-image: url("/assets/img/auth/mail-v1.svg");
          mask-image: url("/assets/img/auth/mail-v1.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.bl-overlay .modal-reset-pass .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bl-overlay .modal-reset-pass .bl-text h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-reset-pass .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
  text-wrap: nowrap;
}
.bl-overlay .modal-reset-pass .bl-text-reset {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset-pass .bl-text-reset button {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: rgb(22, 25, 37);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-reset-pass .bl-text-reset button:hover {
  opacity: 0.8;
}
.bl-overlay .modal-register {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 104px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-register.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-register .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/auth/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-register .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-register .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bl-overlay .modal-register .bl-text h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-register .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
  height: 100%;
}
.bl-overlay .modal-register .form .bl-flex-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input .text-email,
.bl-overlay .modal-register .form .bl-flex-input .bl-input .text-pass {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: rgb(22, 25, 37);
  margin-left: 16px;
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input {
  width: 100%;
  height: 47px;
  padding: 13px 40px 13px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgb(228, 235, 248);
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(22, 25, 37);
  outline: none;
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input::-webkit-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input::-moz-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input:-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input::-ms-input-placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input::placeholder {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input input:focus {
  border: 1px solid var(--color-border-modal);
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input button {
  display: none;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 10px;
  right: 14px;
  -webkit-mask-image: url("/assets/img/auth/visibility-v1");
          mask-image: url("/assets/img/auth/visibility-v1");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--bg-btn-modal);
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-register .form .bl-flex-input .bl-input button.view {
  -webkit-mask-image: url("/assets/img/auth/visibility_off-v1.svg");
          mask-image: url("/assets/img/auth/visibility_off-v1.svg");
}
.bl-overlay .modal-register .form p {
  font-family: "Plus Jakarta Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-register .form p a {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-register .btn-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  padding: 11px 149px;
  border-radius: 12px;
  background: var(--bg-btn-modal);
  border: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-wrap: nowrap;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.bl-overlay .modal-register .btn-register:hover {
  opacity: 0.8;
}
.bl-overlay .modal-register .bl-text-register {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(139, 150, 160);
}
.bl-overlay .modal-register .bl-text-register button {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: rgb(22, 25, 37);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.bl-overlay .modal-register .bl-text-register button:hover {
  opacity: 0.8;
}
.bl-overlay .modal-check-email {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 104px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-check-email.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-check-email .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/auth/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-check-email .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-check-email .icon-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgb(245, 248, 255);
}
.bl-overlay .modal-check-email .icon-email::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: var(--color-icon-modal);
  -webkit-mask-image: url("/assets/img/auth/mail-v1.svg");
          mask-image: url("/assets/img/auth/mail-v1.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.bl-overlay .modal-check-email .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.bl-overlay .modal-check-email .bl-text h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-check-email .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-check-email .bl-text p a {
  font-weight: 700;
  color: rgb(22, 25, 37);
  text-decoration: none;
}
.bl-overlay .modal-check-email p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-info {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  max-width: 546px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 64px 56px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 235, 248);
  border-radius: 25px;
  position: relative;
}
.bl-overlay .modal-info.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl-overlay .modal-info .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  background: url("/assets/img/modal-dashboard/close-v1.svg") no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
.bl-overlay .modal-info .btn-close:hover {
  opacity: 0.8;
}
.bl-overlay .modal-info .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  background: rgb(245, 248, 255);
  border-radius: 50%;
}
.bl-overlay .modal-info .icon::before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: var(--color-icon-modal);
  -webkit-mask-image: var(--icon-modal-info);
          mask-image: var(--icon-modal-info);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.bl-overlay .modal-info .bl-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.bl-overlay .modal-info .bl-info h2 {
  font-family: "Plus Jakarta Sans";
  font-size: 22px;
  font-weight: 600;
  line-height: 24.2px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-info .bl-info .bl-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.bl-overlay .modal-info .bl-info .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: rgb(130, 141, 156);
  text-align: center;
}
.bl-overlay .modal-info button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: none;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-wrap: nowrap;
  cursor: pointer;
  background: var(--bg-btn-modal);
  color: rgb(255, 255, 255);
}
.bl-overlay .modal-info button:hover {
  opacity: 0.8;
}