@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
	width: 100%;
	height: 100%;
	background-color: #F1F1F1;
	color: #7e7e7e;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}

.login-content {
	background: #fff;
	box-shadow: 0 0 35px 0 rgba(154,161,171,0.15);
	border-radius: 5px;
}

.login-form {
	padding: 50px;
}

.login-logo {
	text-align: center;
	margin-bottom: 10px;
}

.login-logo img {
	max-width: 180px;
}

.login-titre {
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	margin-bottom: 50px;
	color: #3d4465;
}

.form-group label {
	font-weight: 600;
}

.login-form button {
	width: 100%;
	background-color: #2f4cdd;
	font-weight: 600;
	font-size: 18px;
	padding: 12px;
}