.container-auth{
	background:url(../images/fond-auth.jpeg) no-repeat center center;
	-webkit-background-size: cover !important; 
	width: 100%;
	height: 100vh;
	background-size: cover !important;
	object-fit: cover;
}
.container-login{
	position: relative;
	width: 100%;
	max-width: 36%;
	min-height: 100vh;
	margin: 0;
	padding: 0 60px 0 60px;
	background-color: rgba(0,0,0,0.3);
	-webkit-box-flex: 0;
	flex: 0 0 39%;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
}
.auth-logo{
	width: 210px;
	margin: 45px auto 25px;
	text-align: center;
}
.auth-logo img {
  width: 100%;
  height: auto;
}
.input-auth{
	border: 1px solid #707070;
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 25px;
	color: #707070;
	padding: .475rem .75rem .3rem;
	overflow: visible;
	display: block;
	box-shadow: none;
	background-color: #fff;
	width: 100%;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	border-radius: 4px;
	outline: none;
}
.input-auth:focus{
	border : none !important;
	box-shadow: none !important;
}
.container-auth-login .form{
	max-width: 350px;
	margin: auto;
}
.container-auth-login  h4{
	margin: 0 !important;
	color: white !important;
	padding : 0 !important;
	font-size: 17px;
}

.container-auth-login label {
  color: #707070;
  position: absolute;
  pointer-events: none;
  top: 0;
  transform: none;
  left: 13px;
  font-size: 10px;
  font-weight: 400;
  transition-duration: .25s;
  padding: 0;
} 
.form-floating{
	padding: 0;
	margin: 10px 0;
	position: relative;
}
.btn-form .btn{
	padding: 9px;
	width: 100%;
	font-size: 15px;
	background: #0d7ef0;
	border-color: #0d7ef0;
	transition: all 200ms ease-in-out;
	text-decoration: none;
}
.btn-form .btn:hover{
	background: #0045a3 !important;
	border-color: #0045a3 !important;
	border: 1px solid #0045a3;
}
@media (max-width: 990px) {
	.container-login{
		max-width: 100%;
		padding: 0 30px;
	}
}
@media (max-width: 715px) {
	.container-login {
	  justify-content: start;
	}
}
