* {
    margin: 0;
    padding: 0;
}

html{
    height: 100%;
}
body {
    font: 1em/16px 'Roboto Condensed', sans-serif;
    color: #3e3e3e;
    overflow: hidden;
    height: 100%;
}

.l-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.text-head {
    font-family: 'GOST Common', sans-serif;
    font-size: 31px;
    color: #fff;
    background: #332F3D;
    position: relative;
    width: 430px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 0;
    letter-spacing: 0.05em;
}
.text-head:before{
    content: '';
    display: block;
    width: 46px;
    background: url("../../../images/icons/all_icon.png") -104px -370px no-repeat;
    position: absolute;
    height: 57px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    line-height: 34px;
    top: -68px;
    left: 50%;
    font-size: 16px;
    margin-left: -23px;
}

.sub-text-head {
    font-family: 'GOST Common', sans-serif;
    font-size: 18px;
    color: #fff;
    background: #4D4467;
    position: relative;
    width: 241px;
    margin: 0 auto 76px;
    text-align: center;
    text-transform: uppercase;
    padding: 4px 0;
    letter-spacing: 0.05em;
}

.login_footer{
    background: url("../../../images/icons/all_icon.png") 0 -370px no-repeat;
    position: absolute;
    left: 50%;
    width: 105px;
    height: 69px;
    margin-left: -52px;
    bottom: 5%;
}

main.content {
    width: 1180px;
    margin: 0 auto;
    position: relative;
    padding: 1px;
}

.loginform {
    margin-top: 108px;
    width: 340px;
}

.loginform h1 {
    line-height: 1;
    font-size: 48px;
    color: #8e8eb3;
    text-transform: uppercase;
    letter-spacing: 0.022em;
}

.loginform h2 {
    text-transform: uppercase;
    line-height: 1;
    font-size: 16px;
    margin: 26px 0;
    letter-spacing: 0.023em;
}

.loginform input:focus { outline: none; }

.loginform input[type="text"],
.loginform input[type="password"] {
    border: 0;
    height: 30px;
    width: 225px;
    box-sizing: border-box;
    padding: 16px 13px;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Roboto Condensed', sans-serif;
}

.loginform input[type="submit"] {
    border: 0;
    display: inline-block;
    background-color: rgba(142, 143, 179, 1);
    width: 120px;
    height: 30px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.4s;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
}

.loginform input[type="submit"]:hover {
    background-color: rgba(142, 143, 179, 0.8);
}

.loginform p {
    margin: 26px 0 23px;
    font-size: 16px;
    letter-spacing: 0.027em;
}

.loginform a {
    color: #3e3e3e;
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
}

.loginform a:after {
    content: '';
    height: 1px;
    background-color: #3e3e3e;
    width: 0;
    position: absolute;
    bottom:0;
    left:0;
    transition: width 0.4s
}

.loginform a:hover:after {
    width: 100%;
}

.build-container {
    position: absolute;
    width: 1180px;
    left: 50%;
    margin-left: -590px;
    top: 0;
    height: 100%;
}

.build-container .layer {
    position: absolute;
    width: 1920px;
    left: -370px;
    height: 1200px;
}

.build-container .layer > div {
    position: absolute;
    width: 1920px;
    height: 1131px;
}

.lr-ground {
    background-image: url('../../../images/building/ground.png');
}

.lr-sky {
    background: url('../../../images/building/sky-before.jpg') repeat-x;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1920px;
    height: 1131px;
    transform: translate3d(0, 0, 0);
    animation-name: sky-pane;
    animation-duration: 300s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.5, 0.5, 1, 1);
    backface-visibility: hidden;
    background-size: contain !important;
}
.lr-sky-before {
    background: url('../../../images/building/sky.jpg') repeat-x;
    animation-name: sky-pane-before;
}
.lr-sky-before-before {
    animation-name: sky-pane-before-before;
}
.lr-sky-animation-pause {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@keyframes sky-pane {
    from {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-100%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        z-index: -1;
    }
}
@keyframes sky-pane-before {
    from {
        transform: translate3d(100%, 0, 0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes sky-pane-before-before {
    from {
        transform: translate3d(200%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
body.blur .sky-animation, body.blur .lr-sky{ -webkit-animation-play-state: paused }

.lr-trees-line {
    background-image: url('../../../images/building/trees_line.png');
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* стили только для IE10 */
    .loginform input[type="text"],
    .loginform input[type="password"] {
        padding: 0;
    }
}