body, html {
	height: 100%;
	margin: 0;
	font-family: "Segoe UI", "Open Sans", Arial, sans-serif;
	background-image: url("img/background.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	color: #fff;
}

.login-wrapper {
	width: 100%;
	max-width: 480px;
	text-align: center;
	margin-block: 10vh auto;
}

.login-box {
	background-color: rgba(23,23,23,0.85);
	backdrop-filter: blur(25px);
	padding: 12px;
	border-radius: 8px;
	box-shadow: 0 0 10px #000;
	color: #8A8A8A;
	text-align: left;
}

.logo {
	background-image: url("img/logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 175px;
	height: 130px;
	margin: 0 auto;
	position: relative;
	inset-inline-start: unset;
}

.logo svg {
	width: 180px;
	fill: #fff;
}

h2 {
	color: #FFF;
	text-align: center;
	font-weight: bold;
	font-size: 25px;
	margin-bottom: 20px;
	margin-top: 2px;
	line-height: 140%;
}

.row {
	display: flex;
	gap: 15px;
}

.row .input-group {
	flex: 1;
}

input, select {
	width: 100%;
	height: 34px;
	padding: 12px 15px;
	margin-bottom: 5px;
	
	background-color: #1a1a1a; 
	color: #8A8A8A;
	border: 1px solid #7D7D7D;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.checkbox-group {
	display: flex;
	align-items: center;
	margin: 20px 0 10px 0;
	text-align: left;
}

.checkbox-group input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	margin-right: 12px;
	cursor: pointer;
	flex-shrink: 0;
	background-color: #1a1a1a;
	border: 1px solid #7D7D7D;
	border-radius: 6px;
	position: relative;
	transition: all 0.2s ease;

	padding: 0;
}

.checkbox-group input[type="checkbox"]:hover {
	outline: none;
	border: 2px solid #7D7D7D;
	background-color: #000000;
}

.checkbox-group input[type="checkbox"]:checked {

	border: 2px solid #7D7D7D;
}

.checkbox-group input[type="checkbox"]::after {
	content: '';
	position: absolute;
	display: none;
	left: 5px;
	top: 1px;
	width: 6px;
	height: 11px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:checked::after {
	display: block;
}

.check-label {
	position: static !important;
	width: auto !important;
	height: auto !important;
	overflow: visible !important;
	clip: auto !important;
	font-size: 0.95em;
	color: #8A8A8A;
	cursor: pointer;
	font-weight: 400 !important;
	user-select: none;
}

input::placeholder {
	color: #8A8A8A;
}

input:hover, select:hover {
	outline: none;
	border: 2px solid #7D7D7D;
	background-color: #000000;
}

input:focus, select:focus {
	outline: none;
	border: 2px solid #7D7D7D;
	background-color: #000000;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
	padding: 0 15px 0 15px;
}

label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.row { display: flex; gap: 12px; margin-bottom: 5px; }
.input-group { flex: 1; margin-bottom: 12px; }

.submit-button {
	width: 100%;
	height: 50px;
	background-color: #fff;
	color: #000;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
}

.submit-button:hover {
	background-color: #fff;
	color: #000;
	font-weight: 900;
}

.submit-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

#error-box {
	background-color: #d93025;
	color: white;
	padding: 12px;
	border-radius: 3px;
	margin-bottom: 20px;
	font-size: 0.85em;
	display: none;
	line-height: 1.4;
}

#loader {
	display: none;
	margin-top: 15px;
	font-size: 0.9em;
	color: #0082c9;
	text-align: center;
	font-weight: 600;
}

.footer-text {
	background-color: rgba(23,23,23,0.85);
	backdrop-filter: blur(25px);
	padding: 12px;
	border-radius: 8px;
	box-shadow: 0 0 10px #000;
	color: #FFF;
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.footer-text a {
	font-weight: bold;color: #FFF;
	text-decoration: none;
}
.footer-text a:hover {
	font-weight: bold;
	color: #FFF;
	text-decoration: underline;
}