/* Reset styles for consistency */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center; /* Center horizontally */
	align-items: center;     /* Center vertically */
	background-color: transparent; /* Fallback nude background color */
	overflow: hidden;        /* Prevent any unwanted scrolling */
}

/* Full-screen blurred background */
.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('pexels-bg.jpg') no-repeat center center fixed;
	background-size: cover;
	filter: blur(8px); /* Apply full-screen blur */
	z-index: -1; /* Place the background behind other content */
}

/* Centered login container */
.login-container {
	background: rgba(255, 250, 240, 0.95); /* Soft nude background with transparency */
	padding: 30px 20px;
	border-radius: 15px;
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
	text-align: center;
	width: 350px; /* Fixed width */
	max-width: 90%; /* Responsive on small screens */
	z-index: 1;

	/* Fade-in animation */
	opacity: 0;
	transform: translateY(20px);
	animation: fadeIn 1s ease-out forwards;
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Form title */
.login-container h1 {
	margin-bottom: 20px;
	color: #8e8e8e;
	font-size: 24px;
	font-weight: bold;
}

/* Input field */
.login-container input[type="password"] {
	width: 100%;
	padding: 12px;
	margin: 15px 0;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	font-size: 14px;
	color: #5a5a5a;
	background-color: #fff;
	transition: border 0.3s;
}

.login-container input[type="password"]:focus {
	border-color: #f5a623;
}

/* Login button */
.login-container button {
	background-color: #f5a623;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.login-container button:hover {
	background-color: #e39318;
}