/* Beleren Bold */
@font-face {
	font-family: "Beleren Bold";
	src:
			url("../fonts/Beleren2016-Bold.woff") format("woff"),
			url("../fonts/Beleren2016-Bold.ttf") format("truetype"),
			url("../fonts/Beleren2016-Bold.svg#Beleren2016-Bold") format("svg");
	font-style: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}

/* Beleren SmallCaps Bold */
@font-face {
	font-family: "Beleren SmallCaps Bold";
	src:
			url("../fonts/Beleren2016SmallCaps-Bold.woff") format("woff"),
			url("../fonts/Beleren2016SmallCaps-Bold.ttf") format("truetype"),
			url("../fonts/Beleren2016SmallCaps-Bold.svg#Beleren2016SmallCaps-Bold") format("svg");
	font-style: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}

/* Jace Beleren Bold */
@font-face {
	font-family: "Jace Beleren Bold";
	src: url("../fonts/JaceBeleren-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}

/* MPlantin */
@font-face {
	font-family: "MPlantin";
	src: url("../fonts/MPlantin.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	text-rendering: optimizeLegibility;
}


/* Beleren SmallCaps BoldItalic */
@font-face {
	font-family: "Beleren SmallCaps BoldItalic";
	src:
			url("../fonts/Beleren2016SmallCaps-BoldItalic.woff") format("woff"),
			url("../fonts/Beleren2016SmallCaps-BoldItalic.ttf") format("truetype"),
			url("../fonts/Beleren2016SmallCaps-BoldItalic.svg#Beleren2016SmallCaps-BoldItalic") format("svg");
	font-style: italic;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}


body { margin: 0; padding: 0; background-color: #f4f4f9; }

*, *::before, *::after { box-sizing: border-box; }

.hidden { display: none; }

.loading { position: fixed; display: flex; top: 0; width: 100%; height: 100%; justify-content: center;  text-align: center; background-color: #fff; }
.loading img { height: 200px; align-self: center; }
.page-content { opacity: 0; }
.page-content > div { box-sizing: border-box; }

input[type="text"], input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
	padding: 12px 15px;
	font-size: 16px;
	color: #333;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	outline: none;
	transition: border 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus, input[type="search"]:focus,
input[type="number"]:focus, input[type="email"]:focus,
input[type="password"]:focus {
	border-color: #4CAF50;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

input[type="text"]::placeholder, input[type="search"]::placeholder,
input[type="number"]::placeholder, input[type="email"]::placeholder,
input[type="password"]::placeholder {
	color: #aaa;
	font-style: italic;
}

/* **** */
/* Login */
/* **** */
.login-page {
	background-color: #f8f9fa;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.login-page .login-container {
	width: 100%;
	max-width: 400px;
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-page h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333;
}
.login-page .form-group {
	margin-bottom: 15px;
}
.login-page .form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
.login-page .form-group input {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
.login-page .form-group input:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}
.login-page .form-check {
	display: flex;
	align-items: center;
	gap: 10px;
}
.login-page .form-check input {
	width: auto;
}
.login-page .form-check label {
	margin: 0;
}
.login-page .form-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login-page .form-actions a {
	text-decoration: none;
	color: #007bff;
}
.login-page .form-actions a:hover {
	text-decoration: underline;
}
.login-page button {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	color: #fff;
	font-size: 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.login-page button:hover {
	background-color: #0056b3;
}
.login-page .text-center {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}
.login-page .text-center a {
	color: #007bff;
	text-decoration: none;
}
.login-page .text-center a:hover {
	text-decoration: underline;
}

/* **** */
/* Home */
/* **** */
.home-page {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.home-page h1 {
	margin-bottom: 20px;
	color: #333;
	font-size: 24px;
}
.home-page .container {
	display: flex;
	width: 100%;
	padding-bottom: 50px;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.home-page .card {
	width: 150px;
	background-color: #ffffff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	padding: 20px;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	text-decoration: none;
}
.home-page .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.home-page .card h2 {
	font-size: 18px;
	color: #333;
	margin: 10px 0;
}
.home-page .card p {
	font-size: 14px;
	color: #555;
}
.home-page .card-icon {
	font-size: 40px;
	color: #4CAF50;
}