/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/* CSS document */

main {
	margin-top: 5%;
	background-image: url(../images/peluche.png);
	background-repeat: no-repeat;
	background-position-x: 650px;
}

h1 {
    max-width: 650px;
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    margin: 0 0 0 65px;
}

/* container de centrage et de largeur de mon formulaire, histoire de ne pas me faire ch... la vie
màj mars 2023 : je peux faire sans ! (voir html et css de page profil) */

.container {
	max-width: 700px;
	margin: 100px 0 0 65px;
	text-align: center;
    border: 5px solid #FC972C;
    border-radius: 100px;
    background-color: white;
}

/* style du formulaire */

form {
	padding: 5%;
}

fieldset {
	border: none;
}

fieldset label {
	font-size: 20px;
	color: #813F83;
}

#identite, #mdp {
	width: 97%;
	height: 50px;
	border: 3px solid #813F83;
	border-radius: 50px;
}

fieldset ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

form fieldset ul li {
	text-align: left;
	font-size: 10.5pt;
	padding-bottom: 1.5%;
}

fieldset p {
	font-size: 15px;
	text-align: justify;
}

#connexion {
	display: block;
	height: 60px;
	border: 1px solid #FC972C;
	background-color: #813F83;
	color: #FC972C;
	border-radius: 50px;
	padding: 0 2% 0 2%;
	margin: 5% auto;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, .2);
            box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, .2);
	font-family: 'Comic Neue', cursive;
	font-size: 21px;
	font-weight: 700;
	cursor: pointer;
}

#connexion:hover {
	border-color: #813F83;
	background-color: #FC972C;
	color: white;
    -webkit-box-shadow: none;
            box-shadow: none;
}

input, button {
	max-width: 100%;
	height: 40px;
	margin-bottom: 3%;
	font-size: 20px;
	padding-left: 10px;
}

button, button:hover {
	display: block;
	margin: 2% auto;
	background-color: white;
	border: 1px solid #813F83;
	color: #FC972C;
	border-radius: 50px;
    font-family: 'Comic Neue', cursive;
	font-size: 20px;
	cursor: pointer;
}

.google::before {
	content: url(../images/logo_goo.png);
}

.apple::before {
	content: url(../images/logo_app.png);
}

fieldset ul a  {
	color: #FC972C;
	cursor: pointer;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
}

fieldset ul a:hover {
	color: #813F83;
}

/* popup mot de passe oublié */

form.oubliPopUp {
	position: relative;
	bottom: 490px;
	left: 240px;
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	max-width: 300px;
	padding: 1% 2%;
    border: 2px dashed #813F83;
    border-radius: 25px;
	background-color: #FC972C;
    -webkit-box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, .5);
            box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, .5);}

form.oubliPopUp p {
	color: white;
	font-weight: 700;
	font-size: 1.15em;
}

form.oubliPopUp input {
	height: 40px;
	border: 2px solid #813F83;
	border-radius: 50px;
}

form.oubliPopUp input::-webkit-input-placeholder {
	color: #FC972C;
	font-size: 16px;
	font-style: oblique;
    font-family: 'Comic Neue', cursive;
}

form.oubliPopUp input::-moz-placeholder {
	color: #FC972C;
	font-size: 16px;
	font-style: oblique;
    font-family: 'Comic Neue', cursive;
}

form.oubliPopUp input:-ms-input-placeholder {
	color: #FC972C;
	font-size: 16px;
	font-style: oblique;
    font-family: 'Comic Neue', cursive;
}

form.oubliPopUp input::-ms-input-placeholder {
	color: #FC972C;
	font-size: 16px;
	font-style: oblique;
    font-family: 'Comic Neue', cursive;
}

form.oubliPopUp input::placeholder {
	color: #FC972C;
	font-size: 16px;
	font-style: oblique;
    font-family: 'Comic Neue', cursive;
}

form.oubliPopUp button {
	border: 1px solid #813F83;
	background-color: white;
	color: #813F83;
	padding: 0% 10%;
}

form.oubliPopUp button:hover {
	border: 1px solid white;
	background-color: #813F83;
	color: white;
	padding: 0% 10%;
}

@media screen and (max-width: 700px) {

	main {
		background-image: none;
		padding: 5%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	
	h1 {
		font-size: 35px;
		line-height: 42px;
		margin: 0 auto;
		text-align: center;
	}

	.container {
		margin: 10% auto;
		border-radius: 50px;
	}

	
	form.oubliPopUp {
		width: 100%;
		left: 4px;
	}

}