.password-notification-block {
  position: fixed;
  display: none;
  justify-content: center;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: 'Gilroy-Regular', sans-serif;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.password-notification-block__password-notification {
  background-color: white;
  margin: auto;
  border-radius: 20px;
  border: none;
  width: 50%;
}

.password-notification {
  padding: 20px;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

.password-notification__warning {
  color: red;
  margin-top: 5px;
}

.password-notification__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.password-notification__title h2 {
  font-size: 33px;
  font-weight: 600;
  text-align: center;
  margin-right: auto;
}

.password-notification__title img {
  display: block;
  margin-left: auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.password-notification__alert {
  font-size: 18px;
  color: #3D3C3C;
  opacity: 0.7;
  margin: 30px auto;
}

.password-notification__new-password p, .password-notification__new-password-confirm p, .password-notification__current-password p {
  font-size: 16px;
  font-weight: bold;
}

.password-notification__new-password input, .password-notification__new-password-confirm input, .password-notification__current-password input {
  font-size: 30px;
  color: #75155C;
  padding: 5px;
  border: 0.5px solid lightgray;
  border-radius: 10px;
  width: calc(100% - 10px);
}

.password-notification__new-password, .password-notification__current-password {
  margin-bottom: 30px;
}

.password-notification__managing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.password-notification__managing p {
  display: block;
  width: 60px;
  font-size: 16px;
  color: #3D3C3C;
  opacity: 0.8;
  cursor: pointer;
  margin: auto 0;
  margin-right: 15px;
}

.password-notification__managing input {
  width: 150px;
  font-size: 18px;
  color: white;
  text-align: center;
  padding: 10px 0;
  background: #3D3C3C;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

@-webkit-keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    top: -100%;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .password-notification {
    width: 340px;
  }
  .password-notification__title h2 {
    font-size: 23px;
  }
  .password-notification__alert {
    font-size: 18px;
  }
  .password-notification__new-password input, .password-notification__new-password-confirm input, .password-notification__current-password input {
    margin-top: 20px;
  }
}

@media (max-width: 400px) {
  .password-notification {
    width: calc(100vw - 60px);
  }

  .password-notification__title h2 {
    font-size: 25px;
    text-align: left;
  }

  .password-notification__alert {
    font-size: 15px;
    margin: 10px auto;
    text-align: center;
  }

  .password-notification__new-password,
  .password-notification__current-password {
    margin-bottom: 10px;
  }

  .password-notification__new-password input,
  .password-notification__new-password-confirm input,
  .password-notification__current-password input {
    margin-top: 5px;
  }

  .password-notification__warning {
    color: red;
    font-size: 15px;
  }
}
/*# sourceMappingURL=change_password.css.map */