body {
	background-image: url("../images/AdobeStock_1519976922.jpeg"); /* Replace with your image */
	background-size: cover; /* Scales the image to cover the entire element */
	background-position: center; /* Centers the image */
	background-repeat: no-repeat; /* Prevents repeating */
	background-attachment: fixed; /* Keeps it fixed when scrolling (optional) */
	height: 100%; /* Ensures the full height is used */
	margin: 0;
	display: flex;
	flex-direction: column;
}

#mobile-login {
	display: none;
}

#mobile {
	display: none;
}

#header {
	color: #0a62a9;
	text-align: center;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 2;
}

div.card {
	margin: 2% auto;
	display: flex;
	width: 90%;
	background-color: #e6e6e64b;
	border: none;
	border-radius: 20px;
	box-shadow: 5px 10px 10px
		rgba(0, 0, 0, 0.547);
}

form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

form input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
	font-size: 1em;
	font-weight: 400;
	width: 75%;
	padding: 8.5px 10px;
	border-radius: 5px;
	border: 0.25px solid
		#eeeeeeab;
	margin: 10px 0px;
	background-color: #ffffff4b;
	color: rgb(0, 0, 0);
	box-shadow: 2px 2px 5px
		rgba(84, 84, 84, 0.547);
}

input::placeholder {
	color: #353535;
	opacity: 1; /* Ensures full visibility */
	font-weight: 400;
}

form button[type="submit"] {
	font-weight: 500;
	text-transform: uppercase;
	width: 75%;
	padding: 10px 10px;
	border-radius: 5px;
	border: none;
	background-color: #ffd4de94;
	border: 0.25px solid
		#0000000e;
	color: #2b2b2b;
	transition: 0.6s;
}

form
	button[type="submit"]:hover {
	transform: scale(
		1.1
	); /* Grows by 10% */
}

main a {
	text-align: center;
	text-decoration: none;
	color: #0a2e7c;
	margin-top: 15px;
	transition: 1s;
}

.content {
	flex: 1; /* Pushes the footer to the bottom */
}

footer {
	font-size: 10px;
	display: flex;
	justify-content: space-between;

	color: black;
	text-align: center;
	padding: 3px;
}

img {
	max-width: 47%;
	height: auto;
	display: block;
	margin: 0 auto;
}

#buttons > a:hover {
	transform: scale(
		1.1
	); /* Grows by 10% */
}

body {
	font-family: Arial,
		sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-color: #f5f5f5;
}

.input-display {
	width: 220px;
	height: 40px;
	margin-bottom: 15px;
	font-size: 20px;
	text-align: center;
	border: 2px solid #007bff;
	border-radius: 5px;
	padding: 5px;
	background: white;
}

#bottom {
	width: 75%;
	margin: 0.5em auto;
	display: flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: baseline;
}

#bottom a {
	font-size: 0.75em;
	text-transform: uppercase;
	font-weight: 500;
	color: #000;
}

.keyboard-container {
	display: grid;
	grid-template-columns: repeat(
		3,
		60px
	);
	gap: 10px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 4px 10px
		rgba(0, 0, 0, 0.1);
}

.key {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.2s;
}

.key:hover {
	background: #0056b3;
}

.button-container {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.btn {
	width: 100px;
	height: 40px;
	font-size: 18px;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.2s;
}

.btn-submit {
	background: #28a745;
	color: white;
}

.btn-submit:hover {
	background: #218838;
}

.btn-clear {
	background: #dc3545;
	color: white;
}

.btn-clear:hover {
	background: #c82333;
}
/* MOBILE VERSION */

@media screen and (max-width: 420px) {
	div.card {
		margin: 2% auto;
		display: flex;
		width: 85%;
		background-color: #efefeffc;
		border: none;
		box-shadow: 10px 15px 15px
			rgba(0, 0, 0, 0.547);
	}

	form input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	select {
		font-size: 0.85em;
		font-weight: 400;
		width: 85%;
	}

	form button[type="submit"] {
		width: 80%;
	}

	img {
		max-width: 67%;
		height: auto;
		display: block;
		margin: 0 auto;
	}

	#bottom {
		font-size: 0.75em;
		width: 100%;
		text-align: center;
	}

	footer {
		flex-direction: column;
	}
}
