button {
	background: none; /* Removes background color */
	border: none; /* Removes default border */
	padding: 0; /* Removes default padding (optional) */
	cursor: pointer; /* Maintains clickable cursor style */
}

.centered-div {
	display: flex;
	justify-content: center;
	align-items: center;
	/* Add other styles for width and height as needed */
}

#Login {
	width: 60%;
	height: 40%;
	background-color: #ffc709;
	border-radius: 10px;
	align-items: start;
	justify-content: center;
	text-align: justify;
	border: 0.25em solid black;
	display: grid;
	align-content: center;
	transition: 0.5s;
}

#Login:disabled {
	opacity: 0;
	z-index: -1;
}

.cocosVideo {
	pointer-events: none;
	width: 100%;
	height: 100%;
	justify-self: center;
}

.full-screen-image {
	position: fixed; /* Makes the div stay fixed on the screen */
	top: 0; /* Positions the top of the div at 0 */
	left: 0; /* Positions the left of the div at 0 */
	width: 100%; /* Sets the width to 100% of the viewport */
	height: 100vh; /* Sets the height to 100% of the viewport height (vh) */
	background-image: url("../custom-asset/BGKV.jpg"); /* Replace with your image path */
	background-size: cover; /* Makes the image cover the entire div area */
	background-position: center; /* Centers the image horizontally and vertically */
	z-index: 9999;
}
