hr.vertical {
    border-left: 1px solid #cbcbcb;
    height: 100%;
    margin-left: 12px;
    margin-right: 12px;
    width: 1px;
}

.Custom-1 .Panel {
    display: flex;
    flex-direction: row;
	
	width: 100%;
	height: 100%;
	
	background: #eee;
}

.Custom-1 .Panel .Left {
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	
	width: 50vw;
	height: 100%;
	background: #fff;
}

.Custom-1 .Panel .Left form {
    width: 60%;
}

.Custom-1 .recovery {
	text-align: start;
}

.Custom-1 .register {
	text-align: end;
}

.Custom-1 .Panel .Left .Brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Custom-1 .Panel .Left .Brand img {
	width: 32px;
	height: 32px;
}

.Custom-1 .Panel .Left .Brand span {
	font-size: 28px;
	color: #000;
	margin: 0;
}

.Custom-1 .Panel .Left .Brand hr.vertical {
    height: 42px;
}

.Custom-1 .Panel .Right {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top right, #ffffff, #d6d2ff);
}

.Custom-1 .Panel .Right .Content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Custom-1 .Panel .Right .Content img {
    pointer-events: none;
    animation: spin 3s infinite linear;
    width: 512px;
    height: 481px;
}

@keyframes spin {
	0%, 100% {
		transform: translate(0, -10px);
	}
	50% {
		transform: translate(0, 10px);
	}
}

#floatingInputPassword {
	padding-right: 40px;
}

form i {
	position: absolute;
	right: 14px;
	top: 20px;
	font-size: 14px;
	cursor: pointer;
}