#annonce {
	width: 70%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F36767;
}

#annonce p {
	text-align: center;
	font-size: 20px;

}

input[type="submit"] {
	background: var(--colorClear);
	width: 60px;
	height: 60px;
	border: 4px solid rgb(220, 220, 220);
	border-radius: 150px;
	text-align: center;
	font-size: 20px;
	color: rgb(220, 220, 220);
	margin-top: 2%;
}

input[type="radio"] {
	display: none;
}

input[type="radio"]+label {
	padding: 2%;
	border: 2px solid rgb(220, 220, 220);
	width: 30%;
}

input[type="radio"]:checked+label,
input[type="radio"]:hover+label {
	background: var(--colorIntermediate);
	transition: 0.5s all;
}

label {
	margin-left: 1%;
	margin-right: 1%;
	text-align: center;
	font-size: 20px;
	font-family: "Manrope";
	color: var(--colorDark);
}

#radio_fac {
	margin-top: 3%;
	margin-bottom: 3%;
	width: 90%;
	display: flex;
	justify-content: center;
}

#connexion,
#inscription,
#mdp_oublie {
	background: white;
	box-shadow: 0px 0px 10px rgb(220, 220, 220);
	padding-top: 2%;
	padding-bottom: 2%;
	width: 40%;
	display: flex;
	flex-direction: column;
	margin: auto;
}

#connexion form,
#inscription form,
#mdp_oublie form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
}

#connexion input[type="text"],
#connexion input[type="password"],
#inscription input[type="text"],
#inscription input[type="password"],
#inscription input[type="email"],
#inscription input[type="phone"],
#mdp_oublie input[type="text"] {
	width: 94%;
	border-top: 2px solid rgb(220, 220, 220);
	border-bottom: 2px solid rgb(220, 220, 220);
	border-left: none;
	border-right: none;
	padding: 3%;
	font-size: 20px;
	font-family: "Manrope";
	margin-top: 2%;
	color: var(--colorDark);
	transition: 0.5s all;
}

#connexion input[type="text"]:hover,
#connexion input[type="password"]:hover,
#inscription input[type="text"]:hover,
#inscription input[type="password"]:hover,
#inscription input[type="email"]:hover,
#inscription input[type="phone"]:hover,
#mdp_oublie input[type="text"]:hover {
	background: var(--colorIntermediate);
	transition: 0.5s all;
}

#connexion input[type="text"]:focus,
#connexion input[type="password"]:focus,
#inscription input[type="text"]:focus,
#inscription input[type="password"]:focus,
#inscription input[type="email"]:focus,
#inscription input[type="phone"]:focus,
#mdp_oublie input[type="text"]:focus {
	outline: none;
	background: var(--colorIntermediate);
	transition: 0.5s all;
}

#message {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38%;
	margin: auto;
	margin-top: 2%;
	font-size: 18px;
	padding: 1%;
	background: #F36767;
}

#nav_connexion {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	border-radius: 10px;
	margin: auto;
	overflow: hidden;
	margin-top: 2%;
}

#nav_connexion a {
	color: black;
	background: white;
	width: 31%;
	font-size: 18px;
	text-align: center;
	border-right: 1px solid rgb(220, 220, 220);
	padding: 1%;
	margin: 0;
	transition: 0.5s all;
}

#nav_connexion a:hover {
	cursor: pointer;
	background: var(--colorClear);
	transition: 0.5s all;
}

#nav_connexion a:last-child {
	border: none;
}

.selected {
	background: var(--colorClear) !important;
}