/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12-feb-2017, 11:20:30
    Author     : into-
*/

div.main-wrapper {
    
    background-image: url(../assets/sys/login.background.jpg);
    background-color: #555;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

div.login-dialog {
    position:absolute;
    left:50%;
    width:450px;
    top:50%;
    margin-top:-200px;
    margin-left:-225px;
    
    /*background-color: white;*/
    /*border: 1px solid #AAA; */    
     -webkit-box-shadow: 0px 2px 20px 0px rgba(50, 50, 50, 0.8);
    -moz-box-shadow:    0px 2px 20px 0px rgba(50, 50, 50, 0.8);
    box-shadow:         0px 2px 20px 0px rgba(50, 50, 50, 0.8);
    
    
    background-clip: border-box;
    
}
div.login-dialog div.content {
    float:left;
    width:100%;
    display:block;    
    
    background-color: white;
    
}
div.login-dialog div.header {
    position:relative;
    float:left;
    width:100%;
    height:60px;
    line-height:40px;
    background-color: #444;
    border-bottom:2px solid #666;
    color: white;
    font-size:18px;
    padding:10px 20px;
    
}
div.login-dialog div.login {
    position:relative;
    width:100%;
    float:left;
    padding:20px 20px;
    padding-top:20px;    
}

div.inputrow {
    width:100%;
    display: block;
    margin-top:10px;
}
div.buttonrow {
    width:100%;
    display: block;
    margin-top:20px;
    text-align:right;
}


div.inputrow div.caption{
    width:100%;
    font-weight: bold;
    color: black;
    height:25px;
    line-height:25px;

}

div.inputrow div.input {
    width:100%;
}

div.inputrow div.input input[type=text] {
    width:100%;
}
div.inputrow div.input input[type=password] {
    width:100%;
}