@media screen {
	body {
		font-family: Calibri;
		background-color: #f4f4f4;
		color: #333;
		
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100vh;
		margin: 0;
	}

	#titre {
		font-size: 24px;
		font-weight: bold;
		color: #0056b3;
		text-align: center;
		margin-bottom: 20px;
	}

	#contenu_c {
		width: 150%;
		max-width: 500px;
		background-color: #fff;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#bloc_connexion {
		width: 100%;
		margin-top: 20px;
	}

	#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: 100%;
		padding: 9px;
		margin: 5px 0;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 4px;
	}

	.bouton_nav {
		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;
	}

	.bouton_nav:hover {
		background-color: #004494;
	}

	.link {
		color: #0056b3;
		text-decoration: none;
	}

	.link:hover {
		text-decoration: underline;
	}

	.error {
		color: red;
		text-align: center;
	}

	table {
		width: 105%;
	}

	table td {
		padding: 8px;
	}

	.navigation {
		margin-top: 20px;
	}

	.password-container {
		position: relative;
	}

	.password-container input[type="password"],
	.password-container input[type="text"] {
		width: calc(100% - 42px);
	}
	.password-container img {
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		cursor: pointer;
	}
}