* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
}

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 white 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: -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: 100%;
  z-index: 35;
  background: rgb(22, 22, 33);
  background-size: 90rem;
  background-position: center;
}
.bl-overlay .go-home {
  position: absolute;
  top: 40px;
  left: 50px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: white;
}
.bl-overlay .go-home::before {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  top: 9px;
  left: -16px;
  background: white;
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
}
.bl-overlay .go-home::after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  top: 13px;
  left: -16px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  background: white;
}
.bl-overlay .modal-pin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-pin .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-pin .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-pin .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .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-pin .form .bl-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl-overlay .modal-pin .form .bl-input.has-error input {
  border-bottom: 1px solid rgb(237, 89, 109);
}
.bl-overlay .modal-pin .form .bl-input input:not(:nth-child(1)) {
  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-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgb(22, 25, 37);
  outline: none;
}
.bl-overlay .modal-pin .form .bl-input input::-webkit-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .form .bl-input input::-moz-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .form .bl-input input:-ms-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .form .bl-input input::-ms-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .form .bl-input input::placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-pin .form .bl-input input:focus {
  border: 1px solid var(--color-border-modal);
}
.bl-overlay .modal-pin .form .bl-input .pin-input {
  border: none;
  border-bottom: 1px solid var(--color-border-modal);
  text-align: center;
  width: 35%;
  display: inline-block;
  font-size: 32px;
  letter-spacing: 5px;
}
.bl-overlay .modal-pin .form .bl-input .pin-input:focus {
  outline: none;
  border: 0 none !important;
  border-bottom: 1px solid var(--color-border-modal) !important;
}
.bl-overlay .modal-pin .form .text-info {
  display: none;
  text-align: center;
}
.bl-overlay .modal-pin .form .text-info span {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgb(22, 25, 37);
  text-align: center;
}
.bl-overlay .modal-pin .btn-pin {
  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-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-wrap: nowrap;
  cursor: pointer;
  background: var(--bg-btn-modal);
  color: rgb(255, 255, 255);
}
.bl-overlay .modal-pin .btn-pin:hover {
  opacity: 0.8;
}
.bl-overlay .modal-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 .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 .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-reset .bl-text p {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .bl-text ul li {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: start;
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .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-reset .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-reset .form .bl-input .text-pass {
  font-family: "Plus Jakarta Sans";
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: rgb(22, 25, 37);
  margin-left: 16px;
}
.bl-overlay .modal-reset .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-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgb(22, 25, 37);
  outline: none;
}
.bl-overlay .modal-reset .form .bl-input input::-webkit-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .form .bl-input input::-moz-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .form .bl-input input:-ms-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .form .bl-input input::-ms-input-placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .form .bl-input input::placeholder {
  color: rgb(130, 141, 156);
}
.bl-overlay .modal-reset .form .bl-input input:focus {
  border: 1px solid var(--color-border-modal);
}
.bl-overlay .modal-reset .form .bl-input #showPass {
  position: absolute;
  top: 34px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: var(--color-platform);
  -webkit-mask-image: url("/assets/img/auth/visibility-v1.svg");
          mask-image: url("/assets/img/auth/visibility-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;
  cursor: pointer;
}
.bl-overlay .modal-reset .form .bl-input #hidePass {
  display: none;
  position: absolute;
  top: 34px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: var(--color-platform);
  -webkit-mask-image: url("/assets/img/auth/visibility_off-v1.svg");
          mask-image: url("/assets/img/auth/visibility_off-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;
  cursor: pointer;
}
.bl-overlay .modal-reset .form .text-info {
  display: none;
  text-align: center;
}
.bl-overlay .modal-reset .form .text-info span {
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: rgb(22, 25, 37);
}
.bl-overlay .modal-reset .btn-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;
  border-radius: 12px;
  border: none;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-wrap: nowrap;
  cursor: pointer;
  background: var(--bg-btn-modal);
  color: rgb(255, 255, 255);
}
.bl-overlay .modal-reset .btn-reset:hover {
  opacity: 0.8;
}