.boxLoginArea {
	display: flex;
	flex-direction: column;
	margin: 90px 0 0 0;
	padding: 5rem 1rem;
	width: 100%;
	justify-content: center;
	align-items: center;
	background: url(../img/bg/bg-resultados-de-exames.jpg) no-repeat center #f4fff6;
	background-size: cover;
}

.boxLoginArea p {
	display: block;
	margin: 0.5rem 0 0 0;
	width: 100%;
	color: #0f9c50;
}

.boxLoginArea .intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 825px;
	margin-bottom: 2rem;
	gap: 2rem;
	text-align: left;
}

.boxLoginArea .intro .left {
	width: 50%;
}

.boxLoginArea .intro .right {
	width: 50%;
}

.boxLoginArea .intro .helpButton {
	display: inline-block;
	margin: 0;
	padding: 0.5rem;
	background-color: #007a2c;
	font-size: 0.80rem;
	line-height: 1.25em;
	color: white;
	text-align: center;
	text-decoration: none;
	max-width: 240px;
	border-radius: 2px;
}

.boxLoginArea .intro .helpButton b {
	font-size: 1.25rem;
}

.boxLoginArea .boxForms {
	display: flex;
	gap: 1rem;
	margin: 2rem 0 0 0;
}

.boxLoginArea .formDivider {
	width: 4px;
	background-color: #007a2c;
}

.boxLoginArea .formTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0.5rem 0;
	padding: 0.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25em;
	background-color: #007a2c;
	color: white;
	text-transform: uppercase;
	min-height: 3rem;
	text-align: center;
	border-radius: 2px;
}

.boxLoginArea .logos {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1rem 0;
}

.boxLoginArea .logos .logo {
	flex: 1 1 auto;
	display: inline-block;
	margin: 1rem 0;
	width: 100%;
	min-width: 0;
	max-width: 200px;
}

.boxLoginArea form {
	flex: 1 1 auto;
	width: 100%;
	max-width: 480px;
}

.boxLoginArea form .input-container {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.boxLoginArea form .input-field {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.boxLoginArea form .input-field label {
	display: block;
	margin: 0;
	padding: 0;
	width: 160px;
	color: #0f9c50;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: -0.5pt;
}

.boxLoginArea form .input-field input {
	flex: 1;
	margin: 0;
	padding: 0.5rem;
	background: rgba(15, 156, 80, 0.2);
}

.boxLoginArea form .input-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.boxLoginArea .infoLGPD {
	margin: 2rem auto 0 auto;
	max-width: 760px;
	font-size: 12px;
	line-height: 1.5;
	color: #0f9c50;
	text-align: center;
}


/* 960px */
@media screen and (max-width: 960px) {
	.boxLoginArea {
		padding: 2rem 1rem 2rem 1rem;
	}
	
	.boxLoginArea .intro {
		flex-direction: column;
		text-align: center;
	}

	.boxLoginArea .intro .left,
	.boxLoginArea .intro .right {
		width: 100%;
	}
	
	.boxLoginArea .boxForms {
		flex-direction: column;
		gap: 2rem;
	}
	
	.boxLoginArea .formDivider {
		width: auto;
		height: 2px;
	}
	
	.boxLoginArea .logos {
		justify-content: center;
	}
	
	.boxLoginArea form .input-field {
		margin-bottom: 0.5rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.boxLoginArea form .input-buttons .button {
		width: 100%;
		margin-top: 1rem;
	}
}