.login_zone {
	width:300px;
	height:270px;
	margin:auto;
	border-radius: 35px 35px 0px 0px;
	display:flex;
	flex-direction:column;
}
.login-form{
	background: #9bcd3ea8;
}
.white-bg {
	background-color:#fff;
}


.img-container {
	text-align:center;
	padding-top: 10px;
}

.login_fields {
	display:flex;
	flex-direction:column;
	padding: 10px 85px;
	position:relative;
}

.login_fields input {
	border: 0;
	background: none;
	box-shadow: none;
	border-radius: 0px;
	height: 40px;
	font-size:1.3em;
	outline: none;
}

.login_fields div:before {
	display: inline-block;
	content: "";
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: center;
	position: absolute;
}

.login_fields .matricule:before {
	background-image:url('../images/login_matricule_gris_2.png');
	left: 50px;
	top: 24px;
}

.login_fields .password:before {
	background-image:url('../images/login_lock.png');
	left: 50px;
	top: 76px;
}

.login-button {
	border-radius: 0px 0px 35px 35px;
	width: 300px;
	height: 75px;
	margin: auto;
	margin-top: 20px;
	cursor: pointer;
}
	.login-button .label {
		width: 80%;
		height: 40px;
		text-align: center;
		padding: 20px;
		font-size: 1.75em;
	}
.login_error {
	text-align: center;
	color: red;
}

.mobile-question {
	display: flex;
	flex-direction: column;
	padding: 33px 10px;
	position: relative;
	font-size: 1.2em;
	text-align: center;
}
.mobile-answers{
	text-align: center;
	padding: 25px 0px;
	opacity:1;
}

/**Placeholders*/

::-webkit-input-placeholder {text-overflow:ellipsis;}
::-moz-placeholder {text-overflow:ellipsis;}
::-ms-input-placeholder {text-overflow:ellipsis;}
::-webkit-scrollbar {width:8px;height:8px;}
::-webkit-scrollbar-thumb {border-radius:10px;background-color:#d6d8db;}
