/* identification.css */
#cadre_site {
	padding-top: 10vw;
	margin: auto;
	padding-left: 8vw;
	padding-right: 8vw;
}

#cadre_site h3 {
	font-family: 'Branding', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 2.5vw;
	color: rgb(255, 123, 31);
	text-align: center;
}

form.pure-form {
	font-size: 1.2vw;
	line-height: 2.5vw;
	max-width: 600px;
	margin: 0 auto;
}

#signin_form label {
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
	display: block;
	margin-bottom: 0.5vw;
}

#signin_form input[type="email"],
#signin_form input[type="password"] {
	width: 100%;
	padding: 0.8vw;
	border: 1px solid rgb(216, 237, 230);
	border-radius: 5px;
	box-sizing: border-box;
	margin-bottom: 1.5vw;
	font-family: 'Poppins', sans-serif;
}

#error_message {
	color: #ff0000;
	font-size: 1.1vw;
	margin: 1vw 0;
	font-family: 'Poppins', sans-serif;
}

/* Style pour le lien "Mot de passe oublié" */
#signin_form a {
	color: rgb(255, 123, 31);
	text-decoration: none;
	font-size: 1.1vw;
	font-family: 'Poppins', sans-serif;
}

#signin_form a:hover {
	text-decoration: underline;
}

/* Alignement du reCAPTCHA */
#signin_form .g-recaptcha {
	margin: 2vw auto;
	display: flex;
	justify-content: center;
}

#signin_form button {
	background-color: rgba(146, 221, 58, 1);
	border: none;
	color: white;
	font-family: 'Branding', sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 1.5vw;
	padding: 1vw 3vw;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}

#signin_form button:hover {
	background-color: rgb(19, 55, 51);
}

/* Responsive Design */
@media (max-width: 768px) {
	#cadre_site {
		padding: 5vw;
	}

	#cadre_site h3 {
		font-size: 4vw;
	}

	form.pure-form {
		font-size: 3vw;
		line-height: 4vw;
	}

	#signin_form input[type="email"],
	#signin_form input[type="password"] {
		font-size: 3vw;
		padding: 1.5vw;
	}

	#error_message,
	#signin_form a {
		font-size: 2.5vw;
	}
}