/*
*----------------------------------
* => LOGIN 
*----------------------------------
*/
.public-login .app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.pg-login {
  display: flex;
  width: 800px;
  min-height: 500px;
  background-color: #fff;
  background-image: url('../../images/init/login.jpg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: -395px;
  box-shadow: 0 0 4px #00000040;
  border-radius: 8px;
  overflow: hidden;
}

.pg-login__inner {
  width: 445px;
  min-height: 500px;
  margin-left: auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.pg-login__head{
  padding-top: 30px;
  text-align: center;
  background-color: #494646;
}

.pg-login__head-logo {
  display: inline-block;
  margin-bottom: 40px;
}

.pg-login__title {
  text-align: center;
  color: 000; /*old #f1902c*/
}


.pg-login__body {
  padding: 30px 70px 10px 70px;
}

.pg-login__footer {
  margin-top: auto;
  text-align: center;
  padding: 5px 0 10px;
  color: #b8b8b8;
}

.pg-login__footer-copyright {
  margin-bottom: 8px;
}

.pg-login__footer-web-master-link {
  color: #5c6a75;
  transition: all .3s linear;
}

@media (max-width: 880px) {
  .login .app-content {
    width: calc(100% - 40px);
    margin: auto;
  }

  .login main,
  .register main {
    width: 100%;
  }

  .pg-login {
    width: 100%;
    background-size: auto 100% ;
  }
}

@media (max-width: 730px) {
  .pg-login {
    background-image: none;
  }
  .pg-login__inner {
    width: 100%;
  }
}

@media (max-width: 500px) {

  .pg-login {
    min-height: 300px;
  }

  .pg-login__inner {
    min-height: 300px;
  }

  .pg-login__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/*
*----------------------------------
* => Page 404
*----------------------------------
*/
.pg-error {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-error__inner {
  width: 70%;
  min-height: 350px;
  background-color: #fff3;
  padding: 35px 25px;
}
.pg-error h1 {
  text-align: center;
  font-size: 6rem;
  margin-bottom: 35px;
}

.pg-error h1 .title__sub-title {
  color: #e70e4f;
}

.pg-error__text {
  text-align: center;
  font-size: 1.5rem;
  color: #8a8585;
}

