.loginContainer {
    display: flex;
    justify-content: center;
}
    
#loginform #inputUsername {
    background: transparent url("templates/wl/pictures/lock-white.svg") no-repeat scroll 14px 10px;
    background-size: 13px;
}
#loginform #password {
    background: transparent url("templates/wl/pictures/member-white.svg") no-repeat scroll 14px 10px;
    background-size: 13px;
}

#loginform input {
    color: white;
    width: 400px;
    margin: 0 0 12px;
    padding: 10px 15px 10px 47px;
    border-color: #7d7d7d;
    outline: none;
}

#loginform button {
    width: 400px;
    margin: 20px 0;
    background-color: transparent;
    border: 1px solid #7d7d7d;
}

h1 {
    font-weight: 500;
    font-size: 2.3em;
    margin-bottom: 40px;
}

.content {
    z-index: 3;
    position: relative;
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 2;
}

#imageoverlay {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

body {
  height: 100vh;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.btn-flip {
    opacity: 1;
    outline: 0;
    color: #fff;
    line-height: 42px;
    position: relative;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-flip:hover:after {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}
.btn-flip:hover:before {
    opacity: 0;
    transform: translateY(-50%) rotateX(90deg);
}
.btn-flip:after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    color: #000;
    display: block;
    transition: 0.5s;
    position: absolute;
    background: #fff;
    content: attr(data-back);
    transform: translateY(50%) rotateX(90deg);
}
.btn-flip:before {
    top: 0;
    left: 0;
    opacity: 1;
    color: #fff;
    display: block;
    padding: 0 30px;
    line-height: 40px;
    transition: 0.5s;
    position: relative;
    content: attr(data-front);
    transform: translateY(0) rotateX(0);
}

#imageoverlay img {
    position: absolute;
    z-index: 1;
}
#imageoverlay img.active {
    z-index: 3;
}

#header, #footer, #sub_footer {
    display: none;
}



html, body, .backgroundTransition, .backgroundTransition .image-top, .backgroundTransition .image-bottom {
    height: 100%;
    width: 100%;
}
body { margin: 0; }
body .backgroundTransition {
    position: relative;
    overflow: hidden;
    background-size: cover;
}
body .backgroundTransition .image-bottom, body .backgroundTransition .image-top {
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
}
body .backgroundTransition .image-bottom { z-index: -2; }
body .backgroundTransition .image-top {
z-index: -1;
display: none;
}
#image-download { display: none; }