/* login page */
/* animations */
[class^="uk-animation-"] {
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-duration: 280ms;
  animation-duration: 280ms;
}
.login {
    margin: 0 auto;
        margin-bottom: 0px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login_page_wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login .user_avatar {
  width: 64px;
  height: 64px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  background-image: url("../images/user.png");
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.085);
  background-position: 50% 1px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 192), only screen and (min-resolution: 192dppx), only screen and (min-resolution: 2dppx) {
  .login .user_avatar {
    background-image: url("../images/user@2x.png");
    background-size: 64px 64px;
  }
}
.login .login_heading {
  text-align: center;
  margin-bottom: 32px;
}
a {
  color: #a6a5a5;
}

.login_panel{
  /*border: 1px solid #ddd;*/
  /*box-shadow: 0 1px 1px rgba(0,0,0,.12),0 1px 1px rgba(0,0,0,.24);*/
  box-shadow: 0px 0px 1px rgba(0,0,0,.3);
  width: 80%;
  margin: 0 auto !important;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.admin_login_panel{
  width: 80%;
  margin: 0 auto !important;
  position: relative;
}
.admin_login_form{
  box-shadow: 0px 0px 1px rgba(0,0,0,.3);
  margin: 0 auto !important;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.login_panel_left{
  background-image: url(../images/login.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.logo_avatar {
  width: 150px;
  display: inline-block;
  text-align: center;
}

.back_to_login{
  margin-top: 5px !important;
}

@media screen and (max-width: 450px) {
  .admin_login_panel{
    width: 100%;
  }
}