body.login {
    background-image: url(../img/login_back.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 750px;
}

body.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: inherit;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    background-image: url(../img/login_back.jpg);
    background-size: cover;
    background-attachment: fixed;
}
  
body.login form#loginform{
    background: #00000042;
    border-radius: 5px;
}

.login p#nav {
    padding: 0;
}

p#nav a{
    border: 1px #555d66 solid;
    border-radius: 5px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: block;
    padding: 0 50px;
}

.login p#nav a:hover{
    border-color: #00a0d2;
}

#login h1 a {
    background: url(../img/login_logo.png);
    width: 200px;
    background-size: 200px;
    height: 200px;
    pointer-events: none;
    cursor: default;
}

div#login {
    padding: 5% 0 0;
}

