/*login*/
.login {
    margin: 60px auto;
    width: 340px;
    padding: 30px 25px;
    background: white;
    border: 1px solid #c4c4c4;
}

h1.login-title {
    margin: -28px -25px 25px;
    padding: 15px 25px;
    line-height: 30px;
    font-size: 25px;
    font-weight: 300;
    text-align:center;
}

.login-input {
    width: 285px;
    height: 50px;
    margin-bottom: 25px;
    padding-left:10px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-input:focus {
    border-color:#6e8095;
    outline: none;
}
.login-button {
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border: 0;
    border-radius: 5px;
    cursor: pointer; 
    outline:0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,45484d+100 */
background: rgb(0,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(69,72,77,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(69,72,77,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(69,72,77,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#45484d',GradientType=0 ); /* IE6-9 */
}

.login-lost
{
    text-align:center;
    margin-bottom:0px;
}

.login-lost a
{
    color:#666;
    text-decoration:none;
    font-size:13px;
}

#login_body{
    background-size: cover;
    background-image:url(/img/bg_login-min.jpg);
}

#dashboard_body{
    background-size: cover;
}

header{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 40px;
    right: 0px;
    overflow: hidden;

    background: linear-gradient(135deg, rgba(0,135,140,1) 0%,rgba(181,3,95,1) 99%); 
}
main{
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0px;
    right: 0px;
    overflow: auto;

}
main>div{
    width:100%;
    margin: auto;
    max-width: 1440px;
}
footer{
    position:absolute; 
    bottom:0px; 
    height:40px; 
    line-height:40px; 
    left:0px; 
    right:0px; 
    overflow:hidden;
    color:#fff;
    font-size: 12px;

    background: linear-gradient(135deg, rgba(0,135,140,1) 0%,rgba(181,3,95,1) 99%); 
}

