body {
  background-image: url("../../image/login-bg.jpeg");
  background-position: left top;
  background-attachment: initial;
}
.box {
  border: none;
  border-radius: 50px;
  width: 626px;
}
#notific {
  max-width: 388px;
  margin: 0px auto;
}
.login__block {
  padding: 60px;
}
.login__title {
  color: #0c1421 !important;
  font-family: Helvetica;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 20px;
}
.login__subtitle {
  color: #767676;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
  margin-bottom: 40px;
}
.login__form {
  max-width: 388px;
  margin: 0px auto;
}
.login__label {
  color: #0c1421;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  width: auto;
  height: auto;
  position: static;
  margin: 0;
  margin-bottom: 8px;
  overflow: visible;
}
.login__input {
  border: 1px solid #d4d7e3;
  background: rgba(136, 151, 173, 0.03);
  padding: 14px 16px;
  height: auto;
  font-size: 16px;
  line-height: 100%;
}
.login__input::placeholder {
  color: #8897ad;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
}
.login__forgot {
  margin-bottom: 20px;
  margin-left: auto;
  width: fit-content;
  height: 17px;
}
.login__forgot a {
  color: #0b2d6d;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.login__submit {
  background: rgb(11, 45, 109);
  color: #ffffff;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  height: 52px;
  margin-bottom: 0 !important;
}
.login__submit:disabled {
  background: rgb(11, 45, 109);
}
.login__input-wrapper {
  position: relative;
}
.login__eye {
  position: absolute;
  right: 18px;
  bottom: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../../image/eye-off.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.login__eye.active {
  background-image: url("../../image/eye-empty.svg");
}
@media (max-width: 1200px) {
  body {
    display: flex;
    align-items: center;
  }
  .login__title {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .login__title {
    font-size: 26px;
  }
  .login__subtitle {
    font-size: 18px;
    line-height: 140%;
  }
}
@media (max-width: 768px) {
  .box {
    border-radius: 25px;
  }
  .login__block {
    padding: 25px 20px;
  }
  .login__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .login__subtitle {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 20px;
  }
  #notific {
    max-width: 100%;
  }
  .login__form {
    max-width: 100%;
  }
  .login__submit {
    font-size: 18px;
    height: 42px;
  }
}