body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	min-height: 100vh;
}

.containerP {
	width: 100%;
	min-height: calc(100vh - 54px);
	padding: 24px 16px 70px;
	background-color: rgb(32, 56, 100);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
}

.logo {
	width: min(420px, 90vw);
	animation: opacity 1s linear;
}

.logo img {
	width: 100%;
	height: auto;
}

.form {
	width: 100%;
	max-width: 480px;
	display: flex;
	animation: opacity 1s linear;
}

.formLogin {
	width: 100%;
}

.loginLabel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	background-color: rgb(122, 122, 122);
	padding: 10px 18px;
	border-radius: 16px;
	margin: 18px 0 -10px 8px;
	position: relative;
	z-index: 2;
	color: white;
	box-shadow: 0.1em 0.1em 0.5em black;
}

#login,
#senha {
	margin-top: 0;
	width: 100%;
	border-radius: 20px;
	border: none;
	padding: 14px 16px 14px 18px;
	background-color: rgb(202, 202, 202);
	box-shadow: 0.1em 0.1em 0.5em black;
}

.linha {
	gap: 12px;
}

.linhaAcoesLogin {
	margin-top: 20px;
	flex-wrap: wrap;
}

.btnRecuperar,
.btnEntrar,
input[type="submit"] {
	margin-top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border-radius: 20px;
	padding: 7px 12px;
	border: none;
	background-color: rgb(122, 122, 122);
	color: white;
	box-shadow: 0.1em 0.1em 0.5em black;
	cursor: pointer;
	text-align: center;
	width: 100%;
}

input[type="submit"]:hover,
.btnRecuperar:hover {
	background-color: blueviolet;
	transition: 0.3s;
}

.inputRec {
	border: 1px solid black;
	background-color: white;
	border-radius: 0;
	width: 100%;
	padding: 10px;
}

.labelRec {
	width: 100%;
	margin-bottom: 5px;
	margin-top: 5px;
}

.enivarRec {
	margin-bottom: 5px;
}

#fecharModal {
	min-height: 40px;
	background-color: red;
	color: white;
	border: 1px solid black;
}

.footer {
	background-color: white;
	padding: 5px 12px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-image {
	max-width: 100px;
	height: auto;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	animation: opacity 0.2s linear;
	padding: 16px;
	z-index: 1050;
}

.modal-content {
	background-color: #fff;
	width: min(460px, 100%);
	margin: 70px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.recoveryBox {
	min-width: 280px;
	max-width: 440px;
	width: 100%;
	background-color: white;
	border: 1px solid black;
	border-radius: 20px;
	box-shadow: 0.1em 0.1em 0.5em black;
	animation: opacity 1s linear;
}

#salvarRecuperarSenha {
	background-color: rgb(166, 166, 166);
	border: none;
	box-shadow: 0.1em 0.1em 0.5em black;
	padding: 7px 20px;
	color: white;
}

@media (max-width: 768px) {
	.containerP {
		justify-content: flex-start;
		padding-top: 40px;
	}

	.linhaAcoesLogin {
		flex-direction: column;
	}

	.modal-content {
		margin-top: 24px;
	}
}

@media (max-width: 480px) {
	.containerP {
		padding-inline: 12px;
	}

	.loginLabel {
		margin-left: 6px;
		padding: 8px 14px;
	}

	#login,
	#senha {
		padding: 12px;
	}

	.footer-content {
		justify-content: center;
		font-size: 13px;
	}
}

@keyframes opacity {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}