body {
	margin: 0 auto;
	background-image: url("../img/bglogin.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
h4{
	font-size:1em;
	font-weight: bold;
	color:#0B610B;
}
.container-login{
	margin: 100px auto;
	text-align:center;
	background-color: rgba(255, 255, 255, 0.3);
	
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius:40px;
}
.container-login img {
	margin-top: 10px;
	margin-bottom: 8px;
	padding: 22px;
/***	background-color: rgba(255, 255, 255, 0.8);*/
	
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius:20px;
}

input[type="text"],input[type="password"]{
	padding: 6px;
	margin: 8px;
	height : 30px;
	font-siz: 1em;
	border: solid 1px #dcdcdc;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
}

input[type="submit"]{
	margin-top: 8px;
	text-align:center;
	font-size:1.2em;
	color:#FFF;
	width: 80px;
	height: 80px;
	background-color: rgba(4, 180, 4, 0.5);
	border: solid 2px #0B610B;
	
	-moz-border-radius: 70px; 
	-webkit-border-radius: 70px; 
	border-radius: 70px;
}

.msgLogin {
	color: #FF4000;
}

/* Mobile phones (portrait and landscape) ---------- */
@media screen and (max-width: 767px){
    .container-login {
        width: 100%;
        height: 360px;
        padding: 5px 10px;
    }
    
   input[type="text"],input[type="password"]{
		width: 180px;
   }
}
/* Tablets and iPads (portrait and landscape) ---------- */
@media screen and (min-width: 768px) and (max-width: 1023px){
    .container-login {
        width: 450px;
        height:360px;
        padding: 5px 10px;
    }
	
	input[type="text"],input[type="password"]{
		width: 200px;
   }
}
/* Low resolution desktops and laptops ---------- */
@media screen and (min-width: 1024px) {
    .container-login {
        width: 500px;
        height:360px;
        padding: 5px 15px;
    }

   input[type="text"],input[type="password"]{
		width: 300px;
   }
}
/* High resolution desktops and laptops ---------- */
@media screen and (min-width: 1280px) {
    .container-login {
        width: 500px;
        height:360px;
        padding: 5px 20px;
    }
    
   input[type="text"],input[type="password"]{
		width: 300px;
   }
}
