@charset "utf-8";

/* Czcionki */

@font-face {
  font-family: 'Main';
  src: url('SmoochSans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900; /* Zakres wag od najlżejszej (100) do najcięższej (900) */
  font-style: normal;
}

/* Zmienne */

:root {
	--orange: #FF7600;
}

/* Dokument CSS */

html, body {
	height: 100vh;
	width: 100vw;
	background: url("/css/default_bg.png") center center repeat;
}

#systemMessage {
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	font-family: Main;
	font-size: 20px;
}

#systemMessage .success {
	background: rgba(28, 170, 5, .9);
	color: #fff;
}

#systemMessage .warning {
	background: rgba(195, 59, 0, .9);
	color: #fff;
}

#systemMessage .error {
	background: rgba(182, 0, 0, .9);
	color: #fff;
}

#index_box {
	min-height: 100%;
}

.index-logo {
	width: 230px;
	display:block;
	margin: 0 auto;
}

.index-btn {
	font-family: Main;
	font-weight: 600;
	color: #fff;
	background: none;
	border: 0;
	border-bottom: 2px solid #999;
	border-color: rgba(0,0,0,0);
	width: 140px;
	border-radius: 4px;
	font-size: 20px;
}
.index-btn:hover {
	border-color: var(--orange);
	color: var(--orange);
	transition: 0.2s ease all;
}

.index-title {
	font-family: Main;
	font-size: 20px;
}

.index-input {
	width: 100%;
	background: none;
	border:0;
	border-bottom: 2px solid #222;
	outline:none;
	color: #eee;
}

.index-input:focus, .index-input:hover {
	border-color: var(--orange);
	transition: 0.2s ease all;
	color: var(--orange)
}

.glass-effect {
  background: rgba(0, 0, 0, 0.1); /* Bardzo lekka półprzezroczystość */
  border-radius: 10px;
  backdrop-filter: blur(3px); /* Rozmycie tła za elementem */
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtelna, biała ramka */
  color: white; /* Biały tekst dla kontrastu */
}
