@charset "utf-8";
/* CSS Document */

body{
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 400;
	background: #FFFFFF;	
	padding: 0;
	margin: 0; 
    background: url(../images//bg-grey.png) repeat;
}

body, html{
	height: 100%;
}

.login_form_wrapper{
	width: 100%;
	text-align: center;
}

.login_form_wrapper:before{
	position: absolute;
	content: '';
	background: #ef4828;
	background: -moz-linear-gradient(top, #0077ac 0%, #216c34 100%);
	background: -webkit-linear-gradient(top, #0077ac 0%,#216c34 100%);
	background: linear-gradient(to bottom, #0077ac 0%,#216c34 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef4828', endColorstr='#216c34',GradientType=0 );
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	animation-name: login_base;
	animation-duration: 5s;
    z-index: -2;
}

@keyframes login_base {
  from {
	opacity: 0;}
  to {
	opacity: 100%;}
}

.login_form_wrapper:after{
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	min-height: 100%;
	background: url(../images/bg.png) repeat;
    z-index: -1;
}


.logo{
    display: inline-block;
    margin: 0 auto;
    position: relative;
    z-index: 999;
    width: 100%;
	margin: 0;
	text-align: center;
    margin-bottom: 20px;

}

.logo img{
    width: 190px;
}

.login_form{
	position: relative;
	z-index: 10;
	padding: 20px;
	background: rgba(0,0,0,0.5);
    text-align: left;
    margin-top: 30px;
    padding: 30px 20px;
	
	/*
     background: rgb(234,108,11);
    background: -moz-linear-gradient(top, rgba(234,108,11,1) 0%, rgba(214,214,214,1) 52%, rgba(17,136,6,1) 100%);
    background: -webkit-linear-gradient(top, rgba(234,108,11,1) 0%,rgba(214,214,214,1) 52%,rgba(17,136,6,1) 100%);
    background: linear-gradient(to bottom, rgba(234,108,11,1) 0%,rgba(214,214,214,1) 52%,rgba(17,136,6,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea6c0b', endColorstr='#118806',GradientType=0 );*/
}

.login_img{margin-top: 30px; position: relative}

.login_img img{
    width: 100%;
}

.login_form h3{
	color: #fff;
	margin: 13px 0;
}

.no_padd{
    padding: 0px;
}


.login_form input[type='text'], input[type='password']{
	background: #fff;
    border: 1px solid #c2cad8;
	width: 100%;
	font-size: 13px;
	height: 34px;
	padding: 6px 12px;
	color: #666;
}

.login_form a{
	color: #fff;
	text-decoration: underline;
}
.forget{
	display: none;
}

.cus_care_no{text-align: center; font-size: 18px; color: #fff; margin-top: 10px; 
    background: rgba(0,0,0,0.2); padding: 7px 10px;}
    
    
label {
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.footer{
    text-align: center;
    background: #000;
    padding: 10px 15px;
    width: 100%;
    margin-top: 20px;
}

.footerlinks ul{
    margin: 0;
    padding: 0;
    text-align: center;
}


.footerlinks li{
    list-style: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 15px;
    text-transform: uppercase;
}

.footerlinks li a{
    color: #fff;
    text-decoration: none;
}

.footerlinks li a:hover{
    color: #33ab51;
}

.has-animation {
  position: relative;
  width: 238px;
  text-align: center;
  padding: 15px;
    text-align: center;
    width: 353px;
}
.has-animation p, .has-animation .new_image {
  opacity: 0;
  position: absolute;
  left: 15px;
  top: 15px;
}
.has-animation.animate-in p, .has-animation.animate-in .new_image {
  animation: new_image 0.1s 1.1s forwards;
}
.has-animation.animate-in p, .has-animation.animate-in .old_image {
	animation: old_image 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.has-animation.animate-in:before {
  background-color: #ef4d2c;
}
.has-animation.animate-in:after {
  background-color: #28a648;
  animation-delay: .5s;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 1.8s ease;
}
.has-animation.animation-rtl.animate-in:after {
  animation: revealRTL 1s .6s ease;
}

@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes new_image {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes old_image {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}




.show-hide-password{
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 0px;
    width: 34px;
    line-height: 34px;
    padding: 0;
    border: none;
}

.form_wrap{
    position: relative;
    margin-bottom: 20px;
}

.form_wrap .btn-danger:focus{
    border: none;
    outline: none;
}

.blk_bg {
	background: url(../images/bg.png) repeat;
    position: relative;
    padding: 50px 0;
    border-bottom: 10px solid #33ab51;
    margin-bottom: 30px;
}

.blk_bg:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, #0077ac 0%, #216c34 100%);
    background: -webkit-linear-gradient(top, #0077ac 0%,#216c34 100%);
    background: linear-gradient(to bottom, #0077ac 0%,#216c34 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef4828', endColorstr='#216c34',GradientType=0 );
    z-index: -1;
}

.aeps_form {
    background: #fff;
    padding: 20px 40px;
}

h4 {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

h4:after {
    position: absolute;
    content: '';
    width: 120px;
    left: 50%;
    bottom: 0;
    margin-left: -60px;
    height: 3px;
    background: #f04e2d;
}

.aeps_wrap p {
    font-size: 14px;
    margin: 15px 0;
    text-align: justify;
}

.logo_in {
    float: left;
    padding: 10px;
}

.topbar{
    margin-top: 30px;
}

@media screen and (max-width: 1199px){
   
}

@media screen and (max-width: 767px){
	.footer{
	    position: relative;
	}
    .login_img{
        display: none;
    }
}

@media screen and (max-width: 479px){
}
