@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* font-family: 'Montserrat', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif; */

body {
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	height: 100vh;
	overflow: hidden;
}

p {
	color: #495057;
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Roboto', sans-serif;
}

a {
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
}
a:hover {
	text-decoration: none !important;
}

.content {
	padding: 7rem 0;
}

h2 {
	font-size: 20px;
}

.half,
.half .container > .row {
	height: 100vh;
	min-height: 700px;
}
.col-md-7 {
	padding: 0 15px;
	margin-top: -50px;
}
.text-black {
	color: #000;
}
.col-md-7 > .title {
	padding-bottom: 10px;
}
.form-control-feedback {
	font-size: 0.9rem !important;
	margin-left: 5px;
	display: none;
	margin-top: 3px;
	margin-bottom: 15px;
	color: #ff071e;
}

.block {
	display: block;
}
@media (max-width: 991.98px) {
	.half .bg {
		height: 200px;
	}
}

.half .contents {
	background: #f6f7fc;
}

.half .contents,
.half .bg {
	width: 50%;
}
.col-md-7 {
	padding: 0 15px;
}
@media (max-width: 1199.98px) {
	.half .contents,
	.half .bg {
		width: 100%;
	}
	.half .bg.order-1 {
		display: none;
	}
	.half .bg.order-2 {
		display: none;
	}
	.col-md-7 {
		padding-top: 80px;
	}

	body {
		overflow: auto;
	}
}
.half .contents .form-control,
.half .bg .form-control {
	border: none;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	height: 54px;
	background: #fff;
}
.half .contents .form-control:active,
.half .contents .form-control:focus,
.half .bg .form-control:active,
.half .bg .form-control:focus {
	outline: none;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.half .bg {
	background-size: cover;
	background-position: center;
}

.half a {
	color: #888;
	text-decoration: underline;
}

.half .btn {
	height: 54px;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 18px;
}

.half .forgot-pass {
	position: relative;
	top: 2px;
	font-size: 14px;
}

.control {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	cursor: pointer;
	font-size: 14px;
}
.control .caption {
	position: relative;
	top: 0.2rem;
	color: #888;
}

.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.swal2-popup .swal2-styled:focus {
	box-shadow: none !important;
}

.badge_version {
	background-color: #1db971 !important;
	color: white !important;
	font-size: 14px;
	text-transform: lowercase;
	margin-left: 20px;
	border-radius: 10px;
}

/* ------ ------- Loadeer CSS ------- ------ */
.loader,
.loader:before,
.loader:after {
	background: #215cde;
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
}
.loader {
	color: #215cde;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
	margin-top: 300px;
}
.loader:before,
.loader:after {
	position: absolute;
	top: 0;
	content: '';
}
.contenedor-loader {
	display: none;
	background: #8284e72e;
	color: white;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.loader:before {
	left: -1.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader:after {
	left: 1.5em;
}
@-webkit-keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}
@keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

/* ------ ------- End Loader CSS ------- ------ */
