/*****************************************/
/***************** LOGIN *****************/
/*****************************************/

#MAINFORM{
	margin-bottom: 0;
}

.login-page{
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.login-page .login-left{
	margin: 0;
	padding: 30px;
	background: -webkit-linear-gradient(138deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%), url('../img/bg.jpg');
	background: -o-linear-gradient(138deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%), url('../img/bg.jpg');
	background: linear-gradient(138deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%), url('../img/bg.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: calc(100% - 750px);
	height: 100vh;
	position: relative;
}

.login-page .login-left .icitelco_logo{
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 140px;
	height: auto;
}

.login-page .login-right{
	margin: 0;
	padding: 30px;
	background-color: #fff;
	width: 750px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.login-page .login-right .login-form{
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 400px;
}

.login-page .login-right .login-form img{
	margin-bottom: 40px;
}

.login-page .login-right .login-form h2{
	margin: 10px 0;
	text-align: left;
	width: 100%;
	display: inline-block;
	font-weight: 300;
	font-size: 25px;
}

.login-page .login-right .login-form p.subtitle{
	margin: 3px 0 30px 0;
	text-align: left;
	width: 100%;
	display: inline-block;
	color: hsl(var(--color-text-grey));
	font-size: 16px;
	background-color: #fff;
	padding: 0;
	font-weight: 400;
}

.login-page .login-right .login-form .input-group{
	width: 100%;
	padding: 0;
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}

.login-page .login-right .login-form .input-group label{
	font-size: 15px;
	font-weight: 400;
	text-align: left;
	margin: 5px 0;
}

.login-page .login-right .login-form .input-group svg{
	color: hsl(var(--color-text-grey));
	width: 18px;
	height: 18px;
	position: absolute;
	top: 40px;
	left: 15px;
}

.login-page .login-right .login-form .input-group input{
	width: 100%;
	outline: none;
	background-color: #fff;
	border: 1px solid hsl(var(--color-text-grey) / 0.4);
	padding: 12px 14px 12px 44px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 8px;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 #0000000d;
	font-family: var(--font);
	transition: all .2s;
}

.login-page .login-right .login-form .input-group input:focus{
	outline: none;
	border: 1px solid hsl(var(--color-primary));
	border-radius: 8px;
	transition: all .2s;
}

.login-page .login-right .login-form .input-row{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	margin-top: 24px;
	transition: all .2s;
}

.login-page .login-right .login-form .input-row a{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 14px;
	text-decoration: none;
	color: hsl(var(--color-text-grey));
}

.login-page .login-right .login-form .input-row a:hover{
	transition: all .2s;
	color: #1a1a1a;
}

.login-page .login-right .login-form .input-row a svg{
	width: 16px;
	height: 16px;
	margin-bottom: 2px;
	margin-right: 4px;
}

.login-page .login-right .login-form .input-row input[type="button"]{
	cursor: pointer;
	min-width: 150px;
	outline: none;
	background: none;
	background-color: hsl(var(--color-primary));
	border: none;
	border-radius: 8px;
	padding: 10px;
	color: #fff;
	text-shadow: none;
	font-weight: 600;
	font-family: var(--font);
	font-size: 13px;
	text-transform: uppercase;
	margin: 0;
}

.login-page .login-right .login-form .input-row input[type="button"]:hover{
	transition: all .2s;
	opacity: .9;
}

.copyright{
	text-align: center;
	display: inline-block;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
	color: hsl(var(--color-text-grey));
}

/* Responsive */
@media screen and (max-width: 1025px){
	.login-page .login-left{
		width: calc(100% - 450px);
	}

	.login-page .login-right{
		width: 450px;
		padding: 50px;
	}
}

@media screen and (max-width: 850px){
	.login-page{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.login-page .login-left{
		display: none;
	}

	.login-page .login-right{
		padding: 50px;
		width: 100%;
	}
}

/*****************************************/
/**************** ERRORS *****************/
/*****************************************/

.error-msg{
	width: 100%;
	border-radius: 4px;
	padding: 10px;
	background-color: hsl(var(--color-error));
	transition: all .2s;
	position: relative;
	margin-top: 20px;
	cursor: pointer;
	display: block;
}

.error-msg.error-msg-success{
	background-color: hsl(var(--color-primary));
}

.error-msg .popup-content{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.error-msg .popup-content svg{
	width: 18px;
	height: 18px;
	color: #fff;
	margin-right: 10px;
}

.error-msg .close-popup{
	line-height: 0;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	margin: 0;
}

.error-msg .close-popup svg{
	width: 18px;
	height: 18px;
	color: #fff;
}

.error-msg p{
	margin: 0;
	text-align: left;
	color: #fff;
	font-size: 14px;
	padding-right: 22px;
}