.content{
	display: flex;
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}

.bkg-svg{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bk_log_svg{
	display: block;
	width: auto;
	height: 100vh;
	fill: var(--color-primary);
	position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.apartment-bkg{
	display: block;
	width: 500px;
	position: relative;
	z-index: 2;
	top: 60px;
}

.content_form{
	width: 50%;
	height: 100%;
	padding: 20px 20px 20px 100px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.subcont_form{
	display: block;
	padding: 5px;
}

#form_login{
	display: block;
	padding: 30px;
	width: 360px;
}

#img_ppal_frm{
	display: block;
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin: 5px auto 5px auto;
}
.bkg-svg_img_ppal_frm{
	fill: var(--color-primary-d);
}
.body-svg_img_ppal_frm{
	fill: var(--color-primary);
}
.tt1-svg_img_ppal_frm,
.tt2-svg_img_ppal_frm{
	fill: #fff;
}

.title_ppal_frm{
	display: block;
	width: 100%;
	padding: 10px 0px;
	text-align: center;
	font-size: 20px;
}
.frm_log_inpcont{
	display: block;
	position: relative;
	width: 100%;
	height: 40px;
	border-bottom: 3px solid #ddd;
	margin: 5px auto 15px auto;
}
.svg_frm{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 40px;
	z-index: 2;
}
.svg_frm label{
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	cursor: pointer;
	background: transparent;
	position: relative;
}
.svg_frm label:before{
	content: '';
	width: 22px;
	height: 22px;
	background: var(--color-primary);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	border-radius: 50%;
}
.svg_frm svg{
	position: relative;
	z-index: 2;
	display: block;
	width: 25px;
	height: 25px;
	fill: rgba(255, 255, 255, .8);
	user-select: none;
	pointer-events: none;
}
.inpt_frm{
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background: #fff;
	padding: 8px 15px 5px 35px;
	font-size: 16px;
	position: relative;
	z-index: 1;
}
#input_login_password{
	padding-right: 35px;
}
.see_password{
	display: flex;
	width: 20px;
	height: 40px;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 10px;
}
.see_password svg{
	cursor: pointer;
	position: relative;
	z-index: 1;
	fill: #555;
	pointer-events: all;
}
.see_password svg *{
	user-select: none;
	pointer-events: none;
}
.close_see_password{
	display: block;
	width: 0px;
	height: 3px;
	background: #555;
	border-bottom: 1px solid #fff;
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	transition: .2s width;
	pointer-events: none;
	user-select: none;
}
.see_password.active .close_see_password{
	width: 20px;
}
.see_password.inactive .close_see_password{
	width: 0px;
}
.hr_frm{
	display: block;
	width: 0px;
	height: 3px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -3px;
	margin: auto;
	background: var(--color-primary);
	transition: .4s all cubic-bezier(.05,.84,.81,.47);
	z-index: 2;
}
.inpt_frm:focus ~ .hr_frm{
	width: 100%;
}

.divlink_forgot{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	padding: 5px;
	margin-bottom: 10px;
}
.divlink_forgot a{
	font-size: 14px;
	color: #444;
	text-decoration: none;
}
#input_login_submit{
	display: block;
	width: 100%;
	max-width: 240px;
	margin: 5px auto;
	padding: 10px 5px;
	text-align: center;
	font-size: 15px;
	border-radius: 30px;
	border: none;
	color: #fff;
	background: var(--color-primary);
	cursor: pointer;
	transition: .5s background;
}
#input_login_submit:hover{
	background: var(--color-primary-d);
}
.btn-form_options{
	display: block;
	border: none;
	padding: 5px;
	width: 110px;
	background: transparent;
	margin: 25px auto 5px auto;
	font-size: 15px;
	cursor: pointer;
	transition: .5s color;
}
.btn-form_options:hover{
	color: var(--color-primary-d);
}


/****** MEDIA QUERIES ******/

@media only screen and (max-width: 1000px) {
	.content{
		height: auto;
		min-height: 100vh;
	}
	.bkg-svg{
		display: none;
	}
	.content_form{
		width: 100%;
		height: 100%;
		padding: 5px;
		justify-content: center;
		align-items: center;
	}
}

@media only screen and (max-width: 500px) {
	#form_login{
		width: 100%;
		padding: 5px;
	}
}