body {
margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background-image: url("https://images.unsplash.com/photo-1681337964205-c4dfd1c94f9f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.login-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border: 1px solid #ccc; /* add border */
	box-sizing: border-box; /* include border in box dimensions */
}

h1 {
	margin-top: 0;
	text-align: center;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

label {
	margin-top: 10px;
}

input {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc; /* add border */
	margin-bottom: 20px;
	box-sizing: border-box; /* include border in box dimensions */
}

button {
	padding: 10px 20px;
	border-radius: 5px;
	border: none;
	background-color: #3498db;
	color: #fff;
	cursor: pointer;
}
