.divider:after,
.divider:before {
content: "";
flex: 1;
height: 1px;
background: #eee;
}



/*********************************************************************************
		CUSTOM CSS
**********************************************************************************/
.wrapper {
  width: 100%;
  position: relative;
}
.auth-img-cover-login {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.auth-cover-left {
	display: flex;
	background-color: #f7f7ff;
	min-height: 100vh;
}
.auth-cover-left .card,
.auth-cover-right .card {
	border:none;
}
.auth-cover-right {
	display: flex;
	background-color: #ffffff;
	min-height: 100vh;
}
@media (max-width:767px) {
	.auth-cover-right .card-body img.logo {
	width:100%!important;
	}
	.auth-cover-right .card-body h2 {
	font-size:24px!important;
	}
}

.bg-gradient-primary {
    background-color: #000000;
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(10%,#000000),to(#1A191F));
	background-image: linear-gradient(180deg,#000000 10%,#1A191F 100%);
    background-size: cover;
}
.bg-login-image {
	background: url("../img/51100230.jpg");
	background-position-x: 0%;
	background-position-y: 0%;
	background-size: auto;
	background-position: center;
	background-size: cover;
}
form.user .form-control-user {
	font-size: 0.8rem;
	border-radius: 10rem !important;
	padding: 1.5rem 1rem;
	margin-bottom:20px;
}
form.user .btn-user {
	font-size: 0.8rem;
	border-radius: 10rem;
	padding: 0.75rem 1rem;
}
/******************************************************************************
	TO TOP
*******************************************************************************/
#back-to-top {
    position: fixed;
    width: 50px;
	height: 50px;
	bottom: 30px;
	right: 30px;
    z-index: 9999;   
    cursor: pointer;
    background-image: url(../img/back-to-top.png);
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color: rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 10px;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
    opacity: .6;
}
#back-to-top:hover {
	background-color: #0153b2;
	opacity: 1;
}
@media (max-width:767px) {
	#back-to-top {
	bottom: 10px;
	right: 10px;
	}
}