#content {
    width: 100%;
    height: 100%;
    margin: 0;
    
    background-image: url("../img/background_login.jpg");
    background-size: cover;
    background-position: center center;
}
#login-form {
    display: block;
    width: 500px;   
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#login-form .logo {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: relative;    
    background-color: #C4C4C4;
    vertical-align: top;
}

#login-form .logo img {
    vertical-align: middle;
    position: relative;
    top: 3px;
}

#login-form h2 {
    margin: 0;
    padding: 0;
    height: 50px;
    line-height: 50px;
    background: #404040;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    padding: 0 20px;
}

#login-form h2 #guide_opener {
    width: 0;
    height: 50px;
    line-height: 50px;
    padding: 0;
    padding-left: 50px;
    background: none;
    overflow: hidden;
    
    position: absolute;
    right: 0;
    top: 0;
    font-family: Arial, sans-serif;
    font-weight: 300;
    font-size: 12px;
    
    transition: 0.2s width;
    
    display: none;
}

#login-form h2 #guide_opener:hover {
    width: 100px;
    background-color: rgba(209, 39, 39, 0.53);
}
#login-form h2 #guide_opener span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    
    position: absolute;
    left: 0;
    top: 0;
    
    font-size: 20px;
}
#login-form form .zend_form {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

#login-form form .zend_form dd#login-element {
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    position: relative;
}
#login-form form .zend_form dd#login-element input {position: relative; z-index: 1;}
#login-form form .zend_form dd#login-element:before,
#login-form form .zend_form dd#login-element:after {
    content: "";
    display: inline-block;
    width: calc(100% - 40px);
    height: 50px;
    line-height: 50px;
    
    position: absolute;
    top: 0;
    left: 20px;
    
    background-color: #404040;
    z-index: -1;
    cursor: pointer;
}

#login-form form .zend_form dd#login-element:before {
    width: 0;
    transition: 0.2s width;
    z-index: 0;
    /*background-color: #8d3232;*/
    background-color: #c33f21;
}
#login-form form .zend_form dd#login-element:hover:before {
    width: calc(100% - 40px);
}


#login-form form .zend_form dd input#login {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    padding: 0;
    margin: 0;
    border-radius: 0;
    /*background-color: #404040;*/
    background-color: transparent;
    outline: none;
}

#login-form form .zend_form dd input#login:hover {
/*    background-color: #8d3232;*/
}

#login-form form .zend_form dd:not(#login-element)  {
    display: inline-block;
    float: none;
    margin: 0;
    padding: 0;
    /*width: 75%;*/
    width: calc(75% + 5px);
    padding-right: 20px;
    box-sizing: border-box;
    clear: none;
}
#login-form form .zend_form dt,
#login-form form .zend_form dd:not(#login-element) {    
    margin: 20px 0 0 0 !important;
}
#login-form form .zend_form dd#password-element {margin-bottom: 20px !important;}

#login-form form .zend_form dd input {
    background-color: #ECECEC;
    color: #404040;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    outline: none;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #c4c4c4;
}
#login-form form .zend_form dd input:focus {outline: none;}

#login-form form .zend_form dt{
    display: inline-block;
    margin: 0;
    padding: 0;    
    
    /*width: 25%;*/
    width: calc(25% - 5px);
    height: 36px;
    line-height: 36px;
    text-align: center;
    box-sizing: border-box;    
    
    color: #404040;
    background: #C4C4C4;
    padding-left: 20px;
    background-clip: content-box;
}
#login-form form .zend_form dt label {
    cursor: pointer;
    color: #404040;
    display: block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
    padding-left: 10px;
    box-sizing: border-box;
}
#login-form form .zend_form dt#login-label {display: none;}

#header {display: none;}
#content-wrapper {height: 100%;}