.blur-background {
	/*background-image: url("https://wallpaperscave.com/images/original/17/12-22/abstract-blur-4887.jpg");	*/
	background-position: center;
	background-image: url("../imgs/bg_logo.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	/*linear-gradient(270deg, #76A2DC, #8EC3EC, #C1DAE6);*/
	width: 100vw;
}

.footer-img {
	flex-direction: row;
	width: 100%;
	bottom: 8%;
	position: absolute;
	align-items: center;
	justify-content: center;
	align-self: center;
	align-content: center;
}


.img-logo {
	width: 160px;
	height: 140px;
	justify-content: center;
	align-items: center;
}

@media (max-width: 768px) {
	.footer-img {
		bottom: 3%;
	}

	.img-logo {
		width: 100px;
		height: 90px;
	}
}

.login-box {
	color: white;
	position: absolute;
	width: 800px;
	height: 400px;
	border-radius: 14px;
	background-color: #0c3f75;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	display: flex;
	transition: all 0.4s;
}

.login-img-box {
	width: 130px;
	height: 130px;
	margin-right: 10px;
	margin-top: -30px;
	margin-bottom: 30px;
}

.login-left-box {
	width: 350px;
	padding: 10px 36px;
	text-align: center;
	display: flex;
}

.login-left-box p {
	font-weight: 100;
	margin-bottom: 0.5em;
}

.login-right-box {
	background-color: var(--light);
	border-radius: 0 14px 14px 0;
	flex-grow: 1;
}

.form-login-content {
	color: var(--dark);
	display: flex;
	flex-direction: column;
	padding: 0px 40px 20px 40px;
}

.form-login-content input[type="text"],
.form-login-content input[type="password"],
.form-login-content input[type="email"] {
	border-radius: 3px;
	color: #2B302E;
	padding-left: 3em;
	border: none;
	height: 2.7em;
	background-color: #EDF1F2;
	transition: all 0.4s linear;
}

.form-login-content input {
	margin-bottom: 10px;
}

.box-input-icon {
	display: flex;
	position: relative;
}

.box-input-icon i {
	position: absolute;
	font-size: 1.2em;
	right: calc(100% - 1.8em);
	color: #83908C;
	margin-top: 0.61em;
}

.box-input-icon input {
	flex-grow: 1;
}

@media (max-width: 850px) {

	.login-left-box {
		display: none;
	}

	.login-box {
		width: 350px;
	}

	.login-right-box {
		border-radius: 14px;
	}
}