
  
  canvas#canvas {
	display: float;
	filter: blur(4px);
  }

  html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #340143;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

.large-div {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #340143;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.small-div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: translate(-50%, -50%);
	justify-content: space-between;
}

.input[type="password"] {
	vertical-align: middle;
	font-size: 16px;
	padding: 5px 10px;
	width: 50%;
	outline: none;
	background: #000000;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 4px;
	transition: .3s ease;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

#myBtn {
	vertical-align: middle;
	cursor: pointer;
	padding-left: 10px;
}

.action-container {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 30px;
	justify-content: space-between;
}

.formerror {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #ffffff44;
}

.install-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 15px 20px;
	border-radius: 10px;
	display: none;
	text-align: center;
	z-index: 1000;
	font-size: 16px;
  }
  
  .install-popup button {
	margin-top: 10px;
	padding: 5px 10px;
	background: white;
	color: black;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }
  
  .share-icon {
	width: 20px;
	vertical-align: middle;
  }

  /* Hide the install pop-up if running in PWA mode */
.pwa-mode #iosInstallPopup {
	display: none !important;
  }
  
  /* Example: Remove margins in PWA for full-screen look */
  .pwa-mode body {
	margin: 0;
	padding: 0;
  }

  