input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}
html {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
	color: #29303b;
}
body {
	padding: 70px 0 0 0;
	margin: 0;
	/*height: 10000px;*/
	background: #edeff0;
	font-family: helvetica neue,helvetica !important;
}
h2 {
	font-weight: 600;
}
a {
	color: rgb(43, 146, 206);
}
a:hover {
	color: #3e416d;
	text-decoration: none;
}
small {
	font-size: .75rem;
	font-weight: 400;
}
blockquote {
	background: #eceff5;
	padding: 12px 40px;
	margin: 0;
	border-left: 5px solid #3e416d;
}
blockquote hr {
	border: 1px solid #ddd;
	margin-bottom: 35px;
}
#main {
	min-height: calc(100vh - 70px);
}

/*FORMULAIRE*/
@media screen and (max-width: 960px) {
	#account-login-contener{
		width: calc(100% - 30px) !important;
	}
}
@keyframes msgToLeft{
	from {
		right: -80%;
	}
	to {
		right: 10px;
	}
}
@keyframes msgToRight{
	from {
		right: 10px;
	}
	to {
		right: -80%;
	}
}
.div-all-msg {
	display: none;
	max-width: 60%;
	color: #666;
	box-shadow: 0 5px 15px 10px rgba(0,0,0,.08);
	background: #fff;
	padding: 12px 20px;
	position: fixed;
	bottom: 50%;
}
.div-all-msg-left {
	display: initial;
	animation: msgToLeft 0.5s;
	right: 10px;
}
.div-all-msg-right {
	display: initial;
	animation: msgToRight 0.5s;
	right: -80%;
}
.form-link{
	text-decoration: none;
}
.form-input {
	width: calc(100% - 32px);
	padding: 0 16px 0 16px;
	line-height: 27px;
	height: 39px;
	display: inline-block;
	color: #666;
	border: 1px solid #eceff5;
	border-radius: 7px;
	transition: .2s ease-in-out;
	transition-property: all;
}
.form-input:focus {
	outline: 0;
	background-color: #fff;
	color: #666;
	border-color: #6a6b77;
}
.double-input {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.child-double-input {
	width: 48%;
}
.form-div-input {
	margin: 0 0 15px 0;
}
.form-div-submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center
}
#form-submit-noAccount {
	flex: 1;
}
#form-submit-button {

}
.form-checkbox-label {
	color: #666;
}
.checkbox {
	height: 16px;
	width: 16px;
	margin-top: 0;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border: 1px solid #ccc;
	transition: .2s ease-in-out;
	border-radius: 4px;
}
.checkbox:checked {
	background-image: url("../ressources/form/checkbox-background.svg");
	background-color: #383a62;
	border-color: transparent;
}
.form-textarea {
	width: calc(100% - 32px);
	padding: 4px 16px;
	min-height: 150px;
	font-family: tahoma, helvetica neue,helvetica !important;
	color: #666;
	border: 1px solid #eceff5;
	border-radius: 7px;
	transition: .2s ease-in-out;
	font-size: 13.3333px;
	line-height: 27px;
	resize: vertical;
	transition-property: border;
	overflow: auto;
}
.form-textarea:focus {
	border-color: #6a6b77;
}

.form-submit {
	font-size: .93rem;
	font-weight: 400;
	cursor: pointer;
	color: #fff;
	border: 1px solid transparent;
	padding: .5rem 1rem;
	border-radius: .25rem;
	transition-property: all;
	transition: .15s;
	background-color: #2196f3;
	box-shadow: inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075);
}
.form-submit:hover {
	background-color: #0c83e2;
	border-color: #0c7cd5;
	color: #FFF;
}
/*ACCOUNT*/
.account-form-div {
	background: #fff;
	color: #666;
	box-shadow: 0 5px 15px rgba(0,0,0,.08);
	padding: 30px;
}
.account-form {
	color: #3e416d;
	font-size: 15px;
	margin-bottom: 5px;
	display: block;
	font-weight: 600;
}