/* If you read this, get a life and go outside! */

/* === START of MAIN === */
	* { box-sizing: border-box; }
	html, body {
		margin: 0;
		padding: 0;
		font-family: sans-serif;
		background: #333;
	}
	#wrapper {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.container {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		min-width: 350px;
		width: 30vw;
	}
	svg { margin-bottom: 10px; }
	/* RESPONSIVE */
	@media screen and (max-height: 500px) {
		svg {
			height: 40vh;
			margin: 0 auto 5px;
			display: block;
		}
	}
/* === END of MAIN === */

/* === START of ERROR === */
	.message {
		display: block;
		margin: 5px auto;
		width: 60%;
		border: 4px solid #BF2323;
		padding: 10px;
		text-align: center;
		background: #fff0f0;
	}
	.message.neutral {
		border: 4px solid #B59126;
		background: #fffaf0;
	}
	.message.success {
		border: 4px solid #2EA61D;
		background: #f3fff0;
	}
	.message form { display: inline; }
	.message input {
		display: inline;
		width: max-content;
		color: #BF2323;
		cursor: pointer;
		margin: 0;
		padding: 0;
		background: transparent;
		letter-spacing: inherit;
		text-decoration: underline;
	}
	.message.neutral input { color: #B59126; }
	.message.success input { color: #2EA61D; }
	.message input:active,
	.message input:focus {
		border: none;
		padding: 0;
	}
	/* RESPONSIVE */
	@media screen and (max-height: 500px) {
		.message {
			padding: 5px;
			font-size: 12px;
		}
	}
/* === END of ERROR === */

/* === START of FORMULAR === */
	/* Hide the up and down arrows in number input fields */
	input[type="number"]::-webkit-inner-spin-button,
	input[type="number"]::-webkit-outer-spin-button {
	    -webkit-appearance: none;
	    appearance: none;
	    margin: 0;
	}
	input[type="number"] {
	    /* Optional: Add additional styles to make it clear it's a number input */
	    padding-right: 30px; /* Add some padding to prevent overlap */
	}
	input,
	button {
		display: block;
		margin: 5px auto;
		width: 60%;
		text-align: center;
		border: none;
		background: #efefef;
		padding: 15px;
		font-size: 15px;
	}
	input { letter-spacing: 7.5px; }
	input:active,
	input:focus {
		outline: none;
		border: 4px solid #efefef;
		background: transparent;
		padding: 11px;
	}
	form span {
		display: block;
		width: 60%;
		margin: 0 auto;
	}
	input[type="checkbox"] {
		float: left;
		width: 25px;
		height: 25px;
		margin: 0 10px 10px 0;
	}
	button {
		background: #000;
		color: #fff;
		cursor: pointer;
		font-weight: bold;
		transition: all 250ms ease;
	}
	button:hover { background: #555; }
	/* RESPONSIVE */
	@media screen and (max-height: 500px) {
		input, button {
			padding: 10px;
			font-size: 12px;
		}
		input:active,
		input:focus {
			padding: 6px;
		}
	}
/* === END of FORMULAR === */