
/****-----start-body----****/

.login-form {
    width: 84%;
    margin: 8% auto 4% auto;
    position: relative;
    border-radius: 13px;
    height: 330px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247,179,79,1)), color-stop(100%, rgba(255,213,122,1)));
    background: -webkit-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -o-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -ms-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
   
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7b34f', endColorstr='#FFD57A',GradientType=0 );
    webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    /* box-shadow: 0 2px 9px #F8C17A; */
    border: 1px solid #ccc;
    /* -webkit-transform: rotate(-3deg); */
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(0deg);
 }

.captcha {
    border: 1px solid #B4B2B2;
    list-style: none;
    margin-bottom: 10px;
    width: 46%;
    background: none;
    border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.3em;
    background-color: #fff;
    border-radius: 10px;
    float: left;
}

.captchadiv {
    float: left;
    width: 46%;
    margin-left: 2px;
}
.captchacode {
    border: solid 1px #C1C1C1;
    height: 30px;
    width: 100px;
    border-radius: 10px;
}

	
	
.head {
	position: absolute;
	top: 1%;
	left: 35%;
}
.head img {
	border-radius:50%;
	-webkit-border-radius:50%;
	-o-border-radius:50%;
	-moz-border-radius:50%;
	/* border:6px solid rgba(221, 218, 215, 0.23); */
}
form {
	/*padding: 34% 15px;*/
}
form li{
	border:1px solid #B4B2B2;
	list-style:none;
	margin-bottom:18px;
	width:100%;
	background:none;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	background-color:#fff;
	border-radius:10px;
}

.icon{
	background:url(../images/icons.png)  no-repeat 0px 0px;
	height:30px;
	width:30px;
	display: block;
	float:left;
	/*margin:7px -11px 0px 0px*/
   margin: 7px -45px 3px -6px;
}

.user{
	background: url(../images/icons.png) no-repeat 12px 11px;
	
}
.lock{
	background: url(../images/icons.png) no-repeat -17px 11px;
}
input[type="text"], input[type="password"] {
	font-family: 'Open Sans', sans-serif;
	width:95%;
	padding:0.5em 2em 0.5em 1.7em;
  /* color:#ff9900; */
	font-size:18px;
	outline: none;
	background: none;
	border:none;
	font-weight:100;
	}
form li:hover{
	border:1px solid #40A9DF;
	 box-shadow: 0 0 1em #40A9DF;
	 -webkit-box-shadow: 0 0 1em #40A9DF;
	 -o-box-shadow: 0 0 1em #40A9DF;
	 -moz-box-shadow: 0 0 1em #40A9DF;
}
input[type="submit"]{
	float:right;
	font-size:16px;
	/* display: inline-block; */
	font-weight:600;
	background-color: #c83a0f;
	color: #fff;
	/* transition: 0.1s all; */
	/* -webkit-transition: 0.1s all; */
	-moz-transition: 0.1s all;
	-o-transition: 0.1s all;
	cursor: pointer;
	outline: none;
	padding:7px 5px;
	margin-top:3px;
	font-family: 'Open Sans', sans-serif;
	width:40%;
	border:none;
	border-radius: 0.3em;
	/* -webkit-border-radius: 0.3em; */
	-o-	border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	/* background: #e4e3e3; */ /* Old browsers */
	background: -moz-linear-gradient(top,  #ffe49e 0%, #ffb700 3%, #ffad00 35%, #ff9000 97%, #e27f00 100%); /* FF3.6+ */
	/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffe49e), color-stop(3%,#ffb700), color-stop(35%,#ffad00), color-stop(97%,#ff9000), color-stop(100%,#e27f00)); */ /* Chrome,Safari4+ */
	/* background: -webkit-linear-gradient(top,  #ffe49e 0%,#ffb700 3%,#ffad00 35%,#ff9000 97%,#e27f00 100%); */ /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffe49e 0%,#ffb700 3%,#ffad00 35%,#ff9000 97%,#e27f00 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffe49e 0%,#ffb700 3%,#ffad00 35%,#ff9000 97%,#e27f00 100%); /* IE10+ */
	/* background: linear-gradient(to bottom,  #ffe49e 0%,#ffb700 3%,#ffad00 35%,#ff9000 97%,#e27f00 100%); */ /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe49e', endColorstr='#e27f00',GradientType=0 ); /* IE6-9 */
}
input[type="submit"]:hover{
	background: #c83a0f; /* Old browsers */
	background: -moz-linear-gradient(top,  #e27f00 0%, #ff9000 3%, #ffad00 65%, #ffb700 97%, #ffe49e 100%); /* FF3.6+ */
	/* background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e27f00), color-stop(3%,#ff9000), color-stop(65%,#ffad00), color-stop(97%,#ffb700), color-stop(100%,#ffe49e)); */ /* Chrome,Safari4+ */
	/* background: -webkit-linear-gradient(top,  #e27f00 0%,#ff9000 3%,#ffad00 65%,#ffb700 97%,#ffe49e 100%); */ /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #e27f00 0%,#ff9000 3%,#ffad00 65%,#ffb700 97%,#ffe49e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #e27f00 0%,#ff9000 3%,#ffad00 65%,#ffb700 97%,#ffe49e 100%); /* IE10+ */
	/* background: linear-gradient(to bottom,  #6b512f 0%,#273f5d 3%,#f0c8bc 65%,#ffb700 97%,#ffe49e 100%); */ /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e27f00', endColorstr='#ffe49e', GradientType=0 ); /* IE6-9 */
}
/***************************/
.p-container{
	margin-top:2em;
}
.p-container  .checkbox input {
	position: absolute;
	left: -9999px;
}
.p-container.checkbox i {
	border-color: #fff;
	transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;	
}
.p-container.checkbox i:hover {
	border-color:red;
	
}
.p-container  i:before {
	background-color: #2da5da;	
}
.p-container  .rating label {
	color: #ccc;
	transition: color 0.3s;
	-o-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-webkit-transition: color 0.3s;
}
.p-container  .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	transition: opacity 0.1s;
	-o-transition: opacity 0.1s;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.p-container .checkbox input + i:after {
	content:url(../images/tick.png) no-repeat 7px 1px;
	top:-15px;
	left:1px;
	width: 15px;
	height: 15px;
}
.p-container  .checkbox {
	float: left;
	margin-right: 30px;
}
.p-container .checkbox {
	padding-left: 40px;
	font-size: 16px;
	line-height:60px;
	color:#858282;
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;	
	font-weight: 600;
}
.p-container  .checkbox {
	position: relative;
	display: block;
}
.p-container  .checkbox i {
	position: absolute;
	top:18px;
	left:5px;
	display: block;
	width:22px;
	height:22px;
	outline: none;
	border:1px solid #999;
	background:#fff;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-o-border-radius:4px;

}
.p-container  .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	transition: opacity 0.1s;
	-o-transition: opacity 0.1s;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.p-container .checkbox input + i:after {
	color: #2da5da;
}
.p-container .checkbox input:checked + i,
.p-container . input:checked + i {
	border-color: #2da5da;	
}
.p-container .rating input:checked ~ label {
	color: #2da5da;	
}

.p-container .checkbox input:checked + i:after {
	opacity: 1;
}

/****************/
.copy-right {
	position: absolute;
	bottom:-16%;
	left: 43.7%;
}
.copy-right p {
	color: #fff;
	font-size: 1em;
	font-family: 'Open Sans', sans-serif;	
	font-weight: 600;
}
.copy-right p a {
	font-family: 'Open Sans', sans-serif;	
	font-size: 1em;
	color:#FF8E03;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.copy-right p a:hover {
	color:#fff;
}




<!------New Media css start------------>
/* ----------- iPhone 4 and 4S ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
.login-form  {
		margin:8% auto 10px auto;
		width:80%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
 .login-form  {
		margin:8% auto 10px auto;
		width:50%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
}


/* ----------- iPhone 5 and 5S ----------- */



/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
 .login-form  {
    margin: 10% auto;
    width: 98%;
    height: 325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em;*/ 
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:35%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
}

/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .login-form  {
		margin:8% auto 10px auto;
		width:50%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}

/* ----------- iPhone 6 ----------- */



/* Portrait */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) { 
  
 .login-form  {
		margin:10% auto;
		width:98%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}

/* Landscape */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .login-form  {
		margin:8% auto 10px auto;
		width:60%;
		height:320px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:35%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	} 

}

/* ----------- iPhone 6+ ----------- */


/* Portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) {
  .login-form  {
		margin:10% auto;
		width:98%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/*padding:19% 1.5em;*/ 
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	} 

}

/* Landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) { 
.login-form  {
		margin:8% auto 10px auto;
		width:60%;
		height:320px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:35%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
}

/* ----------- Galaxy S3 ----------- */

/* Portrait */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) 
  and (orientation: portrait) {
  .login-form  {
		margin:10% auto;
		width:98%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}

/* Landscape */
@media screen 
  and (device-width: 320px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 2) 
  and (orientation: landscape) {
 .login-form  {
		margin:8% auto 10px auto;
		width:60%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}


/* ----------- Galaxy S5 ----------- */


/* Portrait */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: portrait) {
.login-form  {
		margin:10% auto;
		width:98%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
	.login-form {
    width: 84%;
    margin: 8% auto 4% auto;
    position: relative;
    border-radius: 13px;
    height: 450px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247,179,79,1)), color-stop(100%, rgba(255,213,122,1)));
    background: -webkit-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -o-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -ms-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7b34f', endColorstr='#FFD57A',GradientType=0 );
    webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    /* box-shadow: 0 2px 9px #F8C17A; */
    border: 1px solid #ccc;
    /* -webkit-transform: rotate(-3deg); */
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(0deg);
}
}

/* Landscape */
@media screen 
  and (device-width: 360px) 
  and (device-height: 640px) 
  and (-webkit-device-pixel-ratio: 3) 
  and (orientation: landscape) {
  .login-form  {
		margin:8% auto 10px auto;
		width:60%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}


/* ----------- iPad mini ----------- */

/* Portrait */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
  .login-form  {
		margin:10% auto 0;
		width:50%;
	}
	.copy-right {
	left: 41%;
	bottom:-18%;
	}
	.head {
	position: absolute;
	top:-20%;
	left: 35%;
}
.bth{
	clear:both;
}

.login-form {
    width: 84%;
    margin: 8% auto 4% auto;
    position: relative;
    border-radius: 13px;
    height: 370px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247,179,79,1)), color-stop(100%, rgba(255,213,122,1)));
    background: -webkit-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -o-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -ms-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7b34f', endColorstr='#FFD57A',GradientType=0 );
    webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    /* box-shadow: 0 2px 9px #F8C17A; */
    border: 1px solid #ccc;
    /* -webkit-transform: rotate(-3deg); */
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(0deg);
}

}

/* Landscape */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
  
 .login-form {
    margin: 18% auto 0 100%;
    width: 100%;
}
	.copy-right {
	left: 41%;
	bottom:-18%;
	}
	.head {
	position: absolute;
	top:-20%;
	left: 30%;
}

}

/* ----------- Asus Nexus 7 ----------- */


/* Portrait */
@media screen 
  and (device-width: 601px) 
  and (device-height: 906px) 
  and (-webkit-min-device-pixel-ratio: 1.331) 
  and (-webkit-max-device-pixel-ratio: 1.332) 
  and (orientation: portrait) {
  .login-form  {
		margin:8% auto 10px auto;
		width:80%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}

/* Landscape */
@media screen 
  and (device-width: 601px) 
  and (device-height: 906px) 
  and (-webkit-min-device-pixel-ratio: 1.331) 
  and (-webkit-max-device-pixel-ratio: 1.332) 
  and (orientation: landscape) {
  .login-form  {
		margin:8% auto 10px auto;
		width:50%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

}



<!------New Media css end------------>

/*PORTRAIT*/
@media only screen and (max-device-width:384px) and (orientation: portrait){
.login-form  {
		margin:8% auto 10px auto;
		width:80%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	} } 

/*LANDSCAPE*/
@media only screen and (max-device-width:640px) and (orientation: lanscape){
.login-form  {
		margin:10% auto auto auto;
		width:95%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:33%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}

} 


@media only screen 
  and (min-device-width: 600px) 
  and (max-device-width: 639px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
  
  .login-form  {
		margin:8% auto 10px auto;
		width:80%;
		height:325px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
		background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
		background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}
  
  
  }
  
  @media only screen 
  and (min-device-width: 600px) 
  and (max-device-width: 639px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
  
  
  .login-form  {
		margin:8% auto 10px auto;
		width:50%;
		height:300px;
	}
	
	input[type="text"], input[type="password"] {
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    padding: 0.7em 2em 0.7em 1.7em;
    /*color: #ff9900;*/
    font-size: 18px;
    outline: none;
    background: none;
    border: none;
    font-weight: 600;
}
	form{
		/* padding:19% 1.5em; */
	}
	form li{
		margin-top:10px;
	}
	
	input[type="text"], input[type="password"]{
		font-size:15px;
		padding: 0.5em 1em 0.5em 2em;
	}
	input[type="submit"]{
		float:none;
		font-size: 15px;
		padding: 10px 10px;
		width: 40%;
		margin-left: 28%;
	}
	.head{
		top:-15%;
		left:40%;
	}
	.head img {
	width:69%;
	}
	.user {
	background: url(../images/icons.png) no-repeat 15px 5px;
	}

	.lock {
	background: url(../images/icons.png) no-repeat -20px 3px;
	}
	.p-container .checkbox {
	float: none;
	text-align: center;
	}
	.p-container{
		margin-top: 0;
	}
	.icon {
    margin: -30px -19px 15px -5px;
}
	.p-container .checkbox i {
	position: absolute;
	top: 18px;
	left: 43px;
	}
	.copy-right {
	left:20%;
	bottom:-10%;
	}}
  
  
  
  
  @media screen and (max-width: 767px ) {
 .login-form {
    width: 84%;
    margin: 8% auto 4% auto;
    position: relative;
    border-radius: 13px;
    height: 400px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247,179,79,1)), color-stop(100%, rgba(255,213,122,1)));
    background: -webkit-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -o-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -ms-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7b34f', endColorstr='#FFD57A',GradientType=0 );
    webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    /* box-shadow: 0 2px 9px #F8C17A; */
    border: 1px solid #ccc;
    /* -webkit-transform: rotate(-3deg); */
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(0deg);
}
}

@media screen (min-width: 768px) and (max-width: 979px) {
 .login-form {
    width: 84%;
    margin: 8% auto 4% auto;
    position: relative;
    border-radius: 13px;
    height: 400px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(247,179,79,1)), color-stop(100%, rgba(255,213,122,1)));
    background: -webkit-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -o-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    background: -ms-linear-gradient(90deg, rgba(255,213,122,1) 0%, rgba(247,179,79,1) 100%);
    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7b34f', endColorstr='#FFD57A',GradientType=0 );
    webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    /* box-shadow: 0 2px 9px #F8C17A; */
    border: 1px solid #ccc;
    /* -webkit-transform: rotate(-3deg); */
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(0deg);
}
}
  
  
  
  