* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background:
		url("front-bg-logo-photo.png") no-repeat 50% 50%,
		url("horizon-islands-01.jpg") center center / cover no-repeat;
	background-size:
		1037px 960px,
		cover;
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		50% 50%,
		center center;
	z-index: -100;
	pointer-events: none;
	padding: 0;
	border: 0;
	filter: contrast(1.15) brightness(1.01) saturate(1.1);
}
body {
	font-family: 'Spinnaker', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	/* background: #e5e5e5; */
	background: linear-gradient(180deg, #ABD3DF 0%, #fff 100%);
	color: #333;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #444;
	margin-bottom: 6px;
}

input[type="password"],
input[type="text"] {
	width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid #3a3a6e;
	font-family: inherit;
	font-size: 0.95rem;
	background: #fff;
}

input:focus {
	outline: 2px solid #8080d1;
	outline-offset: 1px;
}

button {
	margin-top: 18px;
	width: 100%;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #3a3a6e;
	background: #8080d1;
	color: #fff;
	font-family: inherit;
	font-size: 0.9rem;
	cursor: pointer;
}

button:hover {
	background: #c73652;
}

button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.err {
	margin-top: 12px;
	font-size: 0.85rem;
	color: #b00020;
	min-height: 1.2em;
}

