main.thin{
	width: 96vw;
  	max-width: 500px;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
	position: relative;
}
main.thin section{
	padding: 3em;
	background-color: #fff;
	border: 1px solid #e3e3e3;
	color: rgb(101, 101, 101);
	text-align: center;
	border-radius: 10px;

	
	background-image: url("../img/logo.png");
	background-repeat: no-repeat;
	background-position: center 16px;
	background-size: 70px;
	padding-top: 96px;
}

main.thin a:link, main.thin a:visited, main.thin a:focus, main.thin a:active, main.thin a:hover{
	color: var(--font-pink);
}
main.thin a:hover{
	color: var(--font-a-hover);
}

.logo-compte{
	width: 100px;
	height: auto;
}
.accountinfo>div{
	margin-top: 24px;
}
.accountinfo b{
	color: var(--font-pink);
}
main.thin h1{
	color: var(--font-pink);
	font-size: 22px;
	padding-top: 1.5em;
	text-transform: uppercase;
	border-top: 1px solid #eee;
	font-weight: 800;
	margin: 1.5em 0;
}
main.thin p {
    text-align: center;
}

#souci{
	margin-top: 36px;
	padding-top: 16px;
	margin-bottom: 0;
	border-top: 1px solid #eee;
}

main.thin form,
main.thin form>div{
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}
main.thin form input,
main.thin form select
{
	text-align: center;
}

.icons-achats-account{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
	margin:.5em 0;
}

.icons-achats-account img{
	height: 60px;
	padding:4px;
	width: auto;
	background-color: #6b2941;
	border-radius: 100%;
	margin: .5em;
}

.fa-popup-ok{
	color:green;
	font-size: 150%;
}
.fa-popup-ko{
	color:red;
	font-size: 150%;
}

.jCaptchaCanvas{
	width: fit-content;
	margin: .3em auto;
}


/* LOGIN IMG */
.login-img{
    position: absolute;
	border-radius: 1em;
	overflow: hidden;
	height: 700px;
}

.login-img img{
    height: 700px;
	width: auto;
}
#login-img-1{
    right: 500px;
}
#login-img-2{
    left: 500px;
}


@media screen and (max-width: 1079px) {
	body.content-thin{
        background-color: white;
    }
    body.content-thin main.thin section {
        border: none;
    }
	main.thin{
		width: 100%;
		max-width: 100%;
		padding: 0;
		min-height: calc(100vh - var(--header-mobile-height));
	}
    main.thin section{
		padding-right: 16px;
		padding-left: 16px;
		border-radius: 0;
		background-image: url(../img/login-img-mobile.jpg);
		background-position: center top;
		background-size: 100% auto;
		padding-top: calc(100% / 2.44);
	}
	main.thin h1 {
		border-top: none;
		padding:0;
	}
	.login-img{
		display: none;
	}
}