/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2026-03-23 10:12:25
 Archivo: structure.css
 Codificación: UTF-8
 Editado en: Kate 25.04.3
 ####################################
 */

* {
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	font-size: 12px;
	font-family: system-ui;
	background: url('../img/fondo.webp');
	background-size: cover;
	backdrop-filter: blur(4px);
}



















/* --------- INDEX ---------- */
.main_index {
	border: 0px solid red;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-app {
	background: url('../img/logo.png');
	background-size: cover;
	width: 200px;
	height: 60px;
}

.main_index form {
	border: 0px solid red;
	max-width: 320px;
	max-height: 320px;
	padding: 20px;
	border-radius: 10px;
	background: #fff;
}

.item-input {
	border: 0px solid red;
	padding: 10px;
	margin: 10px;
	text-align: center;
}


/* ------------------------------------------- */















/*------------------ SYSTEM ----------------*/
.main_system {
	border: 0px solid red;
	width: 100vw;
	height: 100vh;
	display: grid;
	min-height: calc( 100vh - 0px );
	grid-template-columns: 200px 5fr 1fr;
	grid-template-rows: 40px 1fr 40px;

	grid-template-areas:
		"header header  header "
		"aside  content content"
		"footer footer  footer ";
}


.header_system {
	grid-area: header;
	background: #0055ff;
}
.aside_system {
	grid-area: aside;
	background: #ffaa00;
}
.content_system {
	grid-area: content;
	background: #aaffff;
	white-space: nowrap;
	overflow: auto;
}
.footer_system {
	grid-area: footer;
	background: #55557f;
}

/*------------------------------------------*/
