/* Fullscreen background container */

.PACSLogin-content {
	  opacity:1;
	  transform: translateX(18px);
}
.PACSnews-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	z-index: -1;
}

/* Image should cover and be responsive */
.PACSnews-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Title and caption styles */
.PACS-titleName {
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	padding: 1px 1px;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-end; /* content aligns from left */
	justify-content: center;
	transform: translateY(100px);
	
}

.PACSLogoPng {
	transform: translateX(210px);
}

.PACScaption-title {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin: 0;
}

/* Media query for mobile screens */
@media (max-width: 768px) {
	.PACSnews-image img {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}

	.PACS-titleName {
		padding: 10px 15px; /* Add padding for mobile */
		transform: translateY(50px); /* Adjust title position for smaller screens */
	}

	.PACSLogoPng {
		transform: translateX(-8px); /* Adjust logo position for mobile */
	}

	.PACScaption-title {
		font-size: 18px; /* Slightly smaller font for mobile */
		padding: 5px 10px; /* Adjust padding for smaller screens */
		text-align: center; /* Center-align title on mobile */
	}

	/* Optional: Adjust for very small screens (portrait phones) */
	@media (max-width: 480px) {
		.PACS-titleName {
			padding: 8px 12px; /* Adjust padding */
			transform: translateY(0px); /* Adjust title position even more */
		}

		.PACScaption-title {
			font-size: 16px; /* Smaller text size for very small screens */
			padding: 4px 8px; /* Adjust padding */
		}
		.PACSLogin-content {
			transform: translateX(-2px);
		}
	}
}
