/* reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,dl,dt,dd,ol,nav ul,nav li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
ol,ul{list-style:none;margin:0px;padding:0px;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{background:'';background:none;}
table{border-collapse:collapse;border-spacing:0;}
/* start editing from here */
a{text-decoration:none;}
.txt-rt{text-align:right;}/* text align right */
.txt-lt{text-align:left;}/* text align left */
.txt-center{text-align:center;}/* text align center */
.float-rt{float:right;}/* float right */
.float-lt{float:left;}/* float left */
.clear{clear:both;}/* clear float */
.pos-relative{position:relative;}/* Position Relative */
.pos-absolute{position:absolute;}/* Position Absolute */
.vertical-base{	vertical-align:baseline;}/* vertical align baseline */
.vertical-top{	vertical-align:top;}/* vertical align top */
nav.vertical ul li{	display:block;}/* vertical menu */
nav.horizontal ul li{	display: inline-block;}/* horizontal menu */
img{max-width:100%;}
/*end reset*/
* { box-sizing: border-box; padding:0; margin: 0; }

body {
	font-family: 'Open Sans', sans-serif;
 	background:url(../images/bg.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
 	background-size: cover;
 	background-size: 100% 100%;
	background: #fff;
}
.main{
	margin:13em auto 0;
	width: 60%;
}
.lg_btn
{
        width: 100%;
    float: left;
    margin: 2em 0em 3em 0em;
}
form {
	background: #fff;
	border-radius: 0.4em;
	/*border: 1px solid #fff;*/
  	overflow:hidden;
  	position:relative;
  	box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
  	border-bottom: 10px solid #0cda51;
}

form:after {
  content:"";
  display:block;
  position:absolute;
  height:1px;
  width:100px;
  left:20%;
  top:0;
}

form:before {
 	content:"";
  display:block;
  position:absolute;
  width:8px;
  height:5px;
  border-radius:50%;
  left:34%;
  top:-7px;
  box-shadow: 0 0 6px 4px #fff;
}

.inset {
 padding:20px; 
  border-top:1px solid #000;
}

form h1{
  /*text-align:center;*/
  padding:18px 0;
  /*border-bottom:1px solid #000;*/
  position:relative;
}
form h1:after {
 content:"";
  display:block;
  width:250px;
  height:100px;
  position:absolute;
  top:0;
  left:50px;
  pointer-events:none;
 -webkit-transform: rotate(70deg);
 background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
  
}

form h1  {
	color:#fff;
	/*text-shadow:0 1px 0 #000;*/
	font-size:18px;
	font-weight: 600;
	/*text-align:center;*/
  padding:18px 0;
  /*border-bottom:1px solid #32924f;*/
  position:relative;
	
}
label {
 	color:#fff;
  	display:block;
  	font-size:13px;
  	padding-bottom:9px;
}

input[type=text],
input[type=password] {
  font-family: 'Open Sans', sans-serif;
  width:100%;
  padding:8px 5px;
  /*background: linear-gradient(to bottom, rgb(225, 225, 225) 0%,rgb(245, 243, 243) 21%,rgba(228,228,228,1) 79%,rgba(242,242,242,1) 100%);*/
  /*border:1px solid #32924f;*/
  /*box-shadow:0 1px 0 rgba(255,255,255,0.1);*/
  /*border-radius:0.3em;*/
  margin-bottom:20px;
  color: #000;
  font-size:13px;
  outline: none;
  background: #efebeb;
}
label[for=remember]{
 	color:#fff;
  	display:inline-block;
  	font-size: 13px;
}

input[type=checkbox] {
 	display:inline-block;
  	vertical-align:middle;
}

.p-container {
 	padding:0 20px 20px 20px; 
}

.p-container:after {
 	clear:both;
  display:table;
  content:"";
}

.p-container span a {
  font-size:14px;
  display:block;
  float:left;
  color:#fff;
  padding-top: 4px;
}

input[type=submit] {
 	padding:5px 20px;
  border:1px solid #0cda51;
  text-shadow:0 -1px 0 rgba(0,0,0,0.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 10px 10px rgba(255,255,255,0.1);
  border-radius:0.3em;
  background-color: #0cda51;
border-color: #0cda51;
 color:#fff;
  float:right;
  font-weight:bold;
  cursor:pointer;
  font-size:15px;
  outline: none;
}

input[type=submit]:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -10px 10px rgba(255,255,255,0.1);
	background-color: #06984f;
border-color: #06984f;

}
/**start-copy-right**/
.copy-right {
	text-align: center;
}
.copy-right p {
	color: #FFF;
	font-size:1em;
	padding:6em 0;
}
.copy-right p a {
	font-size:1em;
	font-weight:600;
	color:#061A3D;
	-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 a:hover{
	color:#fff;
}
/**//end-copy-right**/
/*----start-responsive design-----*/
@media only screen and (max-width:1680px) {
	.main{
	margin:15em auto 0;
	}
	.copy-right p {
	padding: 0em 0;
	}	.login_txt	{		font-size: 50px;    color: #353434;    position: absolute;    top: 140px;    bottom: 0px;    font-weight: bold;    left: -300px;	}
}
@media only screen and (max-width:1440px)  {
	.main{
	margin:11em auto 0;
	width:60%;
	}
	.copy-right p {
	padding:3em 0;
	}	.login_txt	{		font-size: 50px;    color: #353434;    position: absolute;    top: 140px;    bottom: 0px;    font-weight: bold;    left: -300px;	}
}
@media only screen and (max-width:1366px) {
	.main{
	margin:7em 27em 0;
	width:54%;
	}
	.copy-right p {
	padding:3.5em 0;
	}	.login_txt	{		font-size: 50px;    color: #353434;    position: absolute;    top: 140px;    bottom: 0px;    font-weight: bold;    left: -300px;	}
}
@media only screen and (max-width:1280px) {
	.main{
	margin:11em auto 0;
	/*width: 27%;*/
	}
	.copy-right p {
	padding:4.3em 0;
	}	.login_txt	{		font-size: 50px;    color: #353434;    position: absolute;    top: 140px;    bottom: 0px;    font-weight: bold;    left: -300px;	}
}
@media only screen and (max-width:1024px)  {
	.main{
	    margin: 1em auto 0;    width: 50%;
	}	.col-lg-3.log_left {    width: 30%;    float: left;}h1.login_txt {    display: none;}
	.copy-right p {
	padding:6em 0;
	}	.login_txt	{		font-size: 50px;    color: #353434;    position: absolute;    top: 140px;    bottom: 0px;    font-weight: bold;    left: -300px;	}	
}
@media only screen and (max-width:768px) {
	.main{
	margin: 0em auto 0;    width: 60%;
	}
	.copy-right p {
	padding:6em 0;
	}	.login_txt	{		display:none;	}	.col-lg-3.log_left {    width: 30%;    float: left;}
}
@media only screen and (max-width:640px) {
	.main{
	margin: 2em auto 0;    width: 70%;
	}
	.copy-right p {
	padding:6em 0;
	}
		.log_left
	{
	    width: 40%;
        float: left;
	}
}
@media only screen and (max-width:480px)  {
	.main{
	margin: 2em auto 0;
	width: 100%;
	}
	.copy-right p {
	padding:6em 0;
	}
		.log_left
	{
	    width: 40%;
        float: left;
	}
}
@media only screen and (max-width:320px) {
	.main{
	margin:2em auto 0;
	width:100%;
	}
	.copy-right p {
	padding:1em 0;
	}
	.log_left
	{
	    width: 40%;
        float: left;
	}
}

/*----//end-responsive design-----*/

.loginBtn {
  box-sizing: border-box;
  position: relative;
  /* width: 13em;  - apply for fixed size */
  margin: 0.2em;
  padding: 0 15px 0 46px;
  border: none;
  text-align: left;
  line-height: 34px;
  white-space: nowrap;
  border-radius: 0.2em;
  font-size: 16px;
  color: #FFF;
}
.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 100%;
}
.loginBtn:focus {
  outline: none;
}
.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}


/* Facebook */
.loginBtn--facebook {
  background-color: #4C69BA;
  background-image: linear-gradient(#4C69BA, #3B55A0);
  /*font-family: "Helvetica neue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
  text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
  border-right: #364e92 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 6px 6px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
  background-color: #5B7BD5;
  background-image: linear-gradient(#5B7BD5, #4864B1);
}


/* Google */
.loginBtn--google {
  /*font-family: "Roboto", Roboto, arial, sans-serif;*/
  background: #DD4B39;
}
.loginBtn--google:before {
  border-right: #BB3F30 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 6px 6px no-repeat;
}
.loginBtn--google:hover,
.loginBtn--google:focus {
  background: #E74B37;
}
.google_txt { font-size:13px; color: #fff;}
.all_rs
{
        margin: 0em 0em 0em 0em;
}