:root {
	--background: #1d2d50;
	--accent: #fcdab7;
	--accent2: #1e5f74;
	--color: #fefefe;
	--dull: #b8b8b8;
	--error: #e74c3c;
	--highlight: rgba(255, 255, 255, .05);
}

body {
	margin: 0;
	padding: 0;
	font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
	height: 100vh;
	width: 100%;
	background: #1d2d50;
	color: var(--color);
}

h1 {
	font-size: 5em;
	margin: 40px 0;
}

.hidden {
	position: absolute;
	left: -1000%;
	top: -1000%;
	height: 0;
	width: 0;
	pointer-events: none;
	opacity: 0;
}

.formWrapper {
	height: 100%;
	width: 100%;
	display: grid;
	align-items: center;
	justify-content: center;
}

form {
	width: 95vw;
	max-width: 500px;
	box-sizing: border-box;
	padding: 50px 0;
}

form h1 {
	margin: 0 0 15px 0;
	font-size: 3em;
}

.inputblock {
	position: relative;
	display: block;
	padding: 20px 0;
	clear: both;
}

.inputblock input {
	width: 100%;
	padding: 7px;
	box-sizing: border-box;
	display: block;
	background: transparent;
	outline: none;
	font-family: inherit;
	font-size: 15px;
	color: inherit;
	border: 0;
	margin-top: 2px;
	border-bottom: 1px solid var(--color);
}

.inputblock label {
	display: block;
	font-size: 13px;
	color: var(--dull);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
}


.btn {
	display: inline-block;
	padding: 12px 60px;
	font-size: 18px;
	border: 2px solid var(--color);
	border-radius: 2px;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	transition: background .3s, color .3s;
}

.btn:hover,
.btn:active {
	border: 0;
	padding: 14px 62px;
	background: var(--color);
	color: var(--background);
}

.btn:active {
	box-shadow: inset 0 0 4px 5px rgba(0, 0, 0, .1);
}

.errcontainer {
	font-size: 14px;
	opacity: 1;
	transition: opacity .3s;
}

.err {
	margin: 5px 0;
	color: var(--error);
}

.err ul {
	list-style-type: none;
	margin: 0;
	padding-inline-start: 2em;
}

.wave {
	width: 100vw;
	height: 25vw;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}

.wave:nth-child(2) {
	bottom: -5%;
	width: 103%;
	left: -3%;
}

form a {
	position: relative;
	margin: 0;
	line-height: 1.4em;
	display: inline-block;
	color: var(--dull);
	text-decoration: none;
	transition: color .3s;
}

.errorcontainer a {
	display: inline;
	line-height: normal;
	text-decoration: underline;
	color: inherit;
}

form a:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 1px;
	background: var(--dull);
	width: 0px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: width .5s;
}

form a:hover:before {
	width: 100%;
}

form a:hover {
	color: var(--color);
}

.loader {
	height: 64px;
	width: 64px;
	position: fixed;
	top: calc(50% - 32px);
	left: calc(50% - 32px);
	border: 2px solid var(--highlight);
	border-left: 2px solid var(--color);
	border-radius: 50%;
	-webkit-animation: loader 1.5s linear infinite;
	-moz-animation: loader 1.5s linear infinite;
	-ms-animation: loader 1.5s linear infinite;
	-o-animation: loader 1.5s linear infinite;
	animation: loader 1.5s linear infinite;
}




div .main_container {
	color: #292929 !important;
}

@-webkit-keyframes loader {
	to {
		-o-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader {
	to {
		-o-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}


.message {
	text-align: center;
}

.message h2 {
	font-size: 4em;
}


/* Style for the fullscreen overlay */
#fullscreenOverlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Style for the image in fullscreen */
#fullscreenImage {
	max-width: 90%;
	max-height: 90%;
}

/* Style for close button */
#closeButton {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	color: black;
	font-weight: bold;
}

/* Optional styling for the image gallery */
.image-show {
	cursor: pointer;
	max-width: 200px;
	margin: 10px;
	transition: transform 0.2s;
	border: 1px solid #333;
}

.image-show:hover {
	transform: scale(1.10);
}