body {
	background-image: url(../img/loginfundo.png);
	background-size: cover;
}

.mainLogin {
	padding: 0 1rem;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	margin-top: calc(4.3125rem + 2rem);
	/*altura do header mais 2 rem*/
	height: 100vh;
	color: #fff;
}

.login {	
	width: 100%;
	max-width: 400px;
}

.login__title {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	color: #014598;
}

.login_container {
	border-radius: 30px;
	background-color: #ffffff;
	padding: 1rem;
}

.form_inputs {
	margin-top: 1rem;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
}

.form_inputs form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 1rem 0 1rem;
}

.form_inputs form span {
	display: flex;
	flex-direction: column;
	margin: 1rem 0rem;
	width: 100%;
	font-size: 1rem;
	color: #868686;
	font-weight: bold;
}

.form_inputs form span input {
	padding: 0.5rem;
	border: 1px solid #868686;
	border-radius: 0.5rem;
}

button {
	padding: 0.5rem 2rem;
	border: unset;
	color: #fff;
	background-color: #014598;
	border-radius: 9999px;
	cursor: pointer;
}

.esqueceuSenha {
	color: #014598;
	text-decoration: underline;
	margin-top: .5rem;
}

hr {
	margin: 1rem;
	width: 100%;
}

.atendimento {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 400px;

}

.atendimento h6 {
	color: #014598;
	font-size: 1rem;
	font-weight: bold;
}

.atendimento .numeros {
	display: flex;
	margin-top: 0.5rem;
}

.atendimento span {
	display: flex;
	font-size: 15px;
	font-weight: bold;
	color: #014598;
}

.espacamento {
	margin: 0rem 0.5rem;
}

.containerAppd_redes {
	display: flex;
	max-width: 400px;
	padding: 1rem;
	margin-top: 1rem;
	font-weight: bold;
}

.containerAppd_redes .apps {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
}

.containerAppd_redes .apps p {
	margin-right: 0.5rem;
	color: #014598;
}

.containerAppd_redes .apps span {
	display: flex;
	flex-direction: column;
}

.containerAppd_redes .apps img {
	width: 6rem;
}

.redes {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
}

.redes p {
	color: #014598;
}

.redes .links a img {
	width: 1.7rem;
}

@media (max-width: 950px) {
	body {
		overflow: unset;
		background-attachment: fixed;
		background-position: center;
	}

	header img {
		width: 50px;
	}

	.mainLogin {
		width: 100%;
		max-width: 400px;
		padding: 0;
		margin-top: calc(4.3125rem + 2rem);
	}

	.login__title {
		font-size: 20px !important;
	}


	.form_inputs form span {
		margin: .5rem 0;
	}

	.atendimento .numeros {
		display: flex;
		margin-top: unset;
	}

	.atendimento .numeros span {
		font-size: 12px;
		margin-top: 0.5rem;
	}

	
	.containerAppd_redes {
		width: 100%;
		padding: 1rem;
	}

	.containerAppd_redes .apps {
		width: 100%;
		justify-content: center;
	}

	.redes {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.redes p {
		font-size: 12px;
	}

}


@media (max-width: 400px) {

	.mainLogin {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-top: 0;
	}

	.login_container {
		padding: 0;
		border-radius: 30px 30px 0 0;
	}
	
	.login__title {
		margin-top: 0;
	}

	.container_mobile_fundo {
		display: flex;
		flex-grow: 2;
	}

	.img_fundo_mobile {
		width: 100%;
		height: auto;
		display: block !important;
	}

	.containerAppd_redes {
		padding: 0 1.5rem;
	}

	.containerAppd_redes .apps p {
		font-weight: bold;
		font-size: 10px;
	}

	.containerAppd_redes .apps img {
		width: 4rem;
	}

	.redes .links a img {
		width: 1rem;
	}


}

/* UTILS */

.d-none {
	display: none;
}

.d-flex {
	display: flex;
}