body {
	background-image: linear-gradient(135deg, #489ed7 10%, #8aacc3 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: "Open Sans", sans-serif;
	color: #333333;
	padding-top: 10px;
}

.box-form {

	margin: 0 auto;
	width: 98%;
	background: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex: 1 1 100%;
	align-items: stretch;
	/*	  justify-content: space-between;*/
	justify-content: initial;
	box-shadow: 0 0 20px 6px #9d9ec485;
}

@media (max-width: 680px) {
	.box-form {
		flex-flow: wrap;
		text-align: center;
		align-content: center;
		align-items: center;
	}
}

.box-form div {
	height: auto;
}

@media (max-width: 680px) {
	.login-form-left {
		display: none !important;

	}
}

.box-form .left {
	color: #FFFFFF;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../../resources/demo/images/login/proveedor-teconologico.png");
	overflow: hidden;
	display: block;
}

.box-form .left .overlay {
	padding: 30px;
	width: 100%;
	height: 100%;
	background: #489ed7ad;
	overflow: hidden;
	box-sizing: border-box;
}

.box-form .left .overlay h1 {
	font-size: 8.5vmax;
	line-height: 1;
	font-weight: 900;
	margin-top: 40px;
	margin-bottom: 20px;
}

.box-form .left .overlay span p {
	margin-top: 30px;
	font-weight: 900;
}

.box-form .left .overlay span a {
	background-image: linear-gradient(135deg, #489ed7 10%, #8aacc3 100%);
	color: #FFFFFF;
	margin-top: 10px;
	padding: 14px 50px;
	border-radius: 100px;
	display: inline-block;
	box-shadow: 0 3px 6px 1px #042d4657;
}

.box-form .left .overlay span a:last-child {
	background-image: linear-gradient(135deg, #489ed7 10%, #8aacc3 100%);
	margin-left: 30px;
}

.box-form .right {
	padding: 20px;
	/*  color: #fdfdfd;*/
	/*	background-size: contain;*/
	/*	background-repeat: no-repeat;*/
	/*	background-image: url("https://i.ibb.co/2NjkNxg/LOGO-CREDIPAO-07.png");*/
	overflow: hidden;
}

@media (max-width: 680px) {
	.box-form .right {
		width: 100%;
	}
}

.box-form .right h5 {
	font-size: 3.5vmax;
	line-height: 0;
}

.box-form .right p {
	font-size: 14px;
	color: #B0B3B9;
}

.box-form .right .inputs {
	overflow: hidden;
}

.box-form .right input {
	width: 100%;
	padding: 10px;
	/*	margin-top: 25px;*/
	font-size: 16px;
	border: none;
	outline: none;
	border-bottom: 2px solid #B0B3B9;
}

.box-form .right .remember-me--forget-password {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box-form .right .remember-me--forget-password input {
	margin: 0;
	margin-right: 7px;
	width: auto;
}

.box-form .right button {
	float: right;
	color: #fff;
	font-size: 16px;
	padding: 12px 35px;
	border-radius: 50px;
	display: inline-block;
	border: 0;
	outline: 0;
	box-shadow: 0px 4px 20px 0px #0a0655a6;
	background-image: linear-gradient(135deg, #489ed7 10%, #489ed7 100%);
}

label {
	display: block;
	position: relative;
	margin-left: 30px;
}

label::before {
	content: ' \f00c';
	position: absolute;
	font-family: FontAwesome;
	background: transparent;
	border: 3px solid #f60b0b;
	border-radius: 4px;
	color: transparent;
	left: -30px;
	transition: all 0.2s linear;
}

label:hover::before {
	font-family: FontAwesome;
	content: ' \f00c';
	color: #fff;
	cursor: pointer;
	background: #ec3006;
}

label:hover::before .text-checkbox {
	background: #fffffe;
}

label span.text-checkbox {
	display: inline-block;
	height: auto;
	position: relative;
	cursor: pointer;
	transition: all 0.2s linear;
}

label input[type="checkbox"] {
	display: none;
}