/* CSS Document */
html,body{
margin:0px;
height:100%;

font-family: Arial;

}



body{
background-attachment: fixed;
background-clip: border-box;
background-color: #daebf7;
background-image: url(../img/background-linear_g.gif);
background-position: 0% 0%;
background-repeat: repeat-x;
background-size: auto;

padding:0px;
}

div, input{
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
box-sizing:border-box;
}

body > div {
position:relative;
width:100%;
height:100%;
margin:0px auto;
}


.login{
position:relative;
top:35%;
background-color:#FFF;
width:300px;
margin:0px auto;

border: 2px solid #99BBE8;
font-family:Verdana, Arial, Helvetica;
font-size:12px;
overflow:hidden;
}

.login-title{
background-color:#C1D5F0;
padding:5px 5px 5px 5px;
font-weight:bold;
font-family:Verdana, Arial, Helvetica;
font-size:12px;
color:#15428B;

background-image: linear-gradient(bottom, rgb(193,213,240) 0%, rgb(255,255,255) 50%, rgb(193,213,240) 100%);
background-image: -o-linear-gradient(bottom, rgb(193,213,240) 0%, rgb(255,255,255) 50%, rgb(193,213,240) 100%);
background-image: -moz-linear-gradient(bottom, rgb(193,213,240) 0%, rgb(255,255,255) 50%, rgb(193,213,240) 100%);
background-image: -webkit-linear-gradient(bottom, rgb(193,213,240) 0%, rgb(255,255,255) 50%, rgb(193,213,240) 100%);
background-image: -ms-linear-gradient(bottom, rgb(193,213,240) 0%, rgb(255,255,255) 50%, rgb(193,213,240) 100%);

}

.login-content{
height:auto;
padding:10px 5px;
}

.text-field{
margin:0px 0px 7px 0px;
}

.text-field label {
font-weight:bold;
color:#15428B;
}

.text-field input{
width:100%;
height:20px;
border: 1px solid #99BBE8;
}

input[type=text]:focus,input[type=password]:focus{
outline:none;border-color:rgba(82,168,236,.75)!important;
box-shadow:0 0 8px rgba(82,168,236,.5);
-moz-box-shadow:0 0 8px rgba(82,168,236,.5);
-webkit-box-shadow:0 0 8px rgba(82,168,236,.5);
}

.content-button{
text-align:right;
}
.content-button button{
background-image: -o-linear-gradient(#C1D5F0, #fff 35%, #C1D5F0);
}

.password-error{
font-size:11px;
color:#FF0000;
}