@font-face {
    font-family: 'ek_muktabold';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-bold-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ek_muktaextralight';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-extralight-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-extralight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ek_muktalight';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-light-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ek_muktaregular';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-regular-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ek_muktasemibold';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-semibold-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/ekmukta-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'hind_vadodararegular';
    src: url('/wp-content/plugins/selenta-login/login/src/fonts/hindvadodara-regular-webfont.woff2') format('woff2'),
         url('/wp-content/plugins/selenta-login/login/src/fonts/hindvadodara-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body{
	color:#676869;
	font-size: 16px;
	font-family: 'ek_muktaextralight';
    letter-spacing: 0.67px;
    line-height: 24px;
	margin: 0;
}
header{
	height: 120px;
	position: fixed !important;
    background: #252525;
    box-shadow: 0px -3px 36px 0px #000;
	width: 100%;
	z-index: 3;
}

header a{
	position: absolute;
	top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
	background: url(logo-selenta.svg) no-repeat left;
    float: left;
    min-height: 60px;
    max-width: 224px;
}

.container{
	width: 100%;
	padding: 0;
}
.container .left{
    height: calc(100vh - 207px);
	background: #ffffff;
	position: absolute;
	bottom: 87px;
    width: 50%;
    z-index: 1;
}

.container .left .form-signin{
	max-width: inherit;
	width: 30%;
	left: inherit;
	right: 150px;
}
.container .right .form-signin{
	max-width: inherit;
	max-width: 300px;
	left: 0;
	right: 0;
}
.container .right{
    height: calc(100vh - 207px);
	background: #f8f8f2;
	position: absolute;
	bottom: 87px;
	right: 0;
    width: 100%;
    z-index: 1;
}
.container .choose{
	position: fixed;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 100%;
    max-height: 25px;
	text-align: center;
	cursor: pointer;
}
.container .choose span{
	padding: 15px 30px;
}
.container .left .choose{
	left:0;
}
.container .right .choose{
	right:0;
	transition: all 0.3s;
}
.container > div{
	transition: all 0.3s;
}
.container > div form{	
	opacity: 0;
	visibility: hidden;
	transition: all 0.1s;
	
}
.container > div.open{
	width: 100%;
	z-index: 2;
}
.container > div.open .choose{
	opacity: 0;
	visibility: hidden;
}
.container > div.open form{
	-webkit-animation: showlater 0.5s; /* Safari 4.0 - 8.0 */
    animation: showlater 0.5s;
	opacity: 1;
	visibility: visible;
}

@keyframes showlater {
    0%   {opacity: 0;visibility: hidden;}
    75%  {opacity: 0;visibility: hidden;}
    100% {opacity: 1;visibility: visible;}
}


input[type="email"],
input[type="password"]{
	font-size: 16px;
    padding: 13px 20px;
    margin-bottom: 10px;
    font-weight: normal;
    outline: none;
    resize: none;
    border: 1px solid transparent;
	font: inherit;
	margin: 0 0 10px 0;
	width: 100%;	
}

.left input[type="email"],
.left input[type="password"]{
	background-color: #f8f8f2;	
}

.right input[type="email"],
.right input[type="password"]{
	background-color: #ffffff;	
}

.login .message{
	border-color: #d9b975;
}

a.submitbtn{
	padding: 11px 0px;	
	text-decoration: none;
    margin-left: 10px;
}

.submitbtn,.choose span{
	border: 1px solid;
	border-bottom: 3px solid #676869;
    font-size: 12px;
    letter-spacing: 3.6px;
    padding: 0;
	background-color: transparent !important;
    background-image: none;
    color: #676869;
    border-color: #676869;	
    border-radius: 0;
    text-transform: uppercase;
    font-weight: initial;
    z-index: 1;
    font-family: 'ek_muktaregular';
	display: inline-block;
	max-height: 50px;
	position: relative;
	cursor: pointer;
}
.submitbtn:hover input, .submitbtn:hover span, .choose span:hover{
	color: #ffffff;
	-webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.submitbtn:after,.choose span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom center;
    background: #676869;
    z-index: -1;
    transition: transform 0.3s;
}

.submitbtn:hover:after,.choose span:hover:after {
	transform: scaleY(1);
}

input[type="submit"], .submitbtn span{
	cursor: pointer;
	font-size: 12px;
	letter-spacing: 3.6px;
	color: #676869;
    margin-bottom: 0px;
    background: transparent;
    text-transform: uppercase;
    font-weight: initial;
    font-family: 'ek_muktaregular';
    padding: 12px 41px;
	outline: none;
    resize: none;
    border: 1px solid transparent;
}

.container .message.hide{
	opacity: 0;
	visibility: hidden;
}

.container .message{
	position: absolute;
    top: 30%;
    height: 30px;
    z-index: 5;
    text-align: center;
    width: 100%;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s;
}
.container .message .alert{
	display: inline-block;
	color: #ffffff;
	background-color: #000000;
	padding: 30px;
}

.msg center strong{
	color: #000000;
}
.msg center .submitbtn{
	position: relative;
	top: 25px;
	bottom: inherit;
	left: calc(50% - 150px);
	right: inherit;	
}
.msg center .submitbtn:hover{
	color: #ffffff;
}
.chk{
	position: relative;
	background: green;
    width: 50px;
    height: 50px;
    display: block;
    color: #ffffff;
    border-radius: 50%;
    margin-bottom: 30px;
}
.chk:after{
	content: '✓';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 22px;
    font-size: 27px;
}

footer{
	padding: 43px 20px;
    font-size: 12px;
    letter-spacing: 3px;
    background-color: #fff;
    position: fixed;
    z-index: 1;
	width: 100%;
	bottom: 0;
	max-height: 99px;
    border-top: 1px solid #ddd;
}
footer span{
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 23px;
    text-align: center;
    width: 100%;
}



@media (max-width: 500px){
	header {
		height: 84px;
	}
	header a{
	    max-width: 130px;
		top: 14px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.container > div{
	    top: 84px;
		bottom: inherit!important;
		position: relative!important;
		height: auto!important;
	}
	.container .choose{
		width: 100%;
	}
	.container .choose span{
		margin: 30px 15px;
		font-size: 10px;
		padding: 10px 15px;
		letter-spacing: 2px;
		width: calc(100% - 60px);
	}
	.container .left .choose{
		bottom: inherit;
		top: 80px;
	}
	.container .right .choose{
		bottom: inherit;
		top: 150px;
	}
	.container .form-signin{
		background: #ffffff;
		width: calc(100% - 30px)!important;
		top: 500px;
		position: absolute;
	}
	.right input[type="email"],
	.right input[type="password"]{
		background-color: #f8f8f2;	
	}
	footer{
		padding: 43px 0;
	}
	footer span{
		display: inline-block;
		width: 90%;
		margin-left: 5%;
		height: 47px;
	}
}

.loader {
  color: #676869;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: auto;
  position: fixed;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}