/*-------------- GENERAL --------------*/

form{
	margin:0px;
	padding:0px;
}

/*-------------- Login --------------*/

#divForm{
	margin-top:160px;
	position:relative;
	margin-left:auto;
	margin-right:auto;
	
	width:500px;
	height:239px;
}
#divForm label{
	font-family:Arial, Verdana;
	font-size:22px;
	color:#3d3d3d;

	/*text-shadow: #999 0.1em 0.1em;*/
}
#divLoginForm{
	background: rgb(17,115,162);
    background: linear-gradient(180deg, rgb(18 128 181) 44%, rgb(35 145 199) 100%);
	width:97%;
	height:100%;
	
	padding:5px;
	border: 1px solid #8a9fd2;
    border-radius: 15px;
	
}
#divLoginForm table{
	width:100%;
	height:229px;
	/*background:rgba(255,255,255,1) #FFF; */
	
}
#divLoginForm table th{
	border-bottom:1px #6A7386 solid;
	text-align:left;
	height:30px;
	color:#fff;
	font-weight:normal;
	font-family:arial;
}
#divLoginForm table td{
	font-family:arial;
	color:#fff;
	font-weight:normal;
}
#divLoginForm input[type=text], input[type=password]{
	width:200px;
	height:25px;
	background-color:#74879F;
	border:1px solid #333;
	color:#FFF;
	font-size:13px;
}
#divLoginForm input[type=submit]{
	width: 205px;
    height: 30px;
    background-color: #616cff;
    border: 1px solid #333;
    color: #FFF;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}
#divLoginForm input[type=submit]:hover{
    background-color: #ff9900;

}
.clsTdLeft{
    width:130px;
}
@media (min-width: 100px) {
    #divForm{
    	width:100%;
    }
    .clsTdLeft{
        width:80px;
    }
}
@media (min-width: 768px) {
    #divForm{
    	width:400px;
    }
    .clsTdLeft{
        width:100px;
    }
}
@media (min-width: 992px) {
    #divForm{
    	width:500px;
    }
    .clsTdLeft{
        width:110px;
    }
}
@media (min-width: 1200px) {
    #divForm{
    	width:500px;
    }
    .clsTdLeft{
        width:130px;
    }
}

