@media screen {
    body {
		font-family: Arial, sans-serif;
		background-color: #f4f4f4;
		color: #333;
		
	}
	#titre {
		font-size: 24px;
		font-weight: bold;
		color: #0056b3;
		text-align: center;
		margin-bottom: 20px;
	}
	#contenu_c {
		width: 50%;
		margin: 0 auto;
		background-color: #fff;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.sous-titre {
		font-size: 18px;
		font-weight: bold;
		color: #0056b3;
		margin-bottom: 10px;
		text-align: center;
	}
	label {
		font-weight: bold;
	}
	input[type="text"], input[type="password"] {
		width: calc(100% - 42px);
		padding: 10px;
		margin: 5px 0;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 4px;
	}
	.button {
		background-color: #0056b3;
		color: white;
		border: none;
		padding: 10px 20px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		margin: 4px 2px;
		cursor: pointer;
		border-radius: 4px;
	}
	.button:hover {
		background-color: #004494;
	}
	.link {
		color: #0056b3;
		text-decoration: none;
	}
	.link:hover {
		text-decoration: underline;
	}
	.error {
		color: red;
	}
	#togglePassword {
		cursor: pointer;
	}
	.password-container {
		position: relative;
	}
	.password-container input[type="password"],
	.password-container input[type="text"] {
		width: 100%;
	}
	.password-container img {
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
	}
	 #identifiants {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	
}
