.loginleft,
.loginright {
	height: 100vh;
}


.loginbody {
	background-image: url("../images/loginbg.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.anton-regular {
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.inst-toltip {
	position: relative;
	display: inline-block;
}

.inst-toltip b {
	display: inline-block;
	height: 20px;
	width: 20px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 50%;
}

.inst-toltip .inst-msg {
	position: absolute;
	width: 220px;
	display: none;
	font-size: 12px;
	top: -12px;
	left: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
	box-sizing: border-box;
	padding: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, .5);
	transition-duration: .3s;
}

.inst-toltip .inst-msg:before {
	content: "";
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 13px solid #fff;
	border-bottom: 10px solid transparent;
	position: absolute;
	left: -10px;
}

.inst-toltip:hover .inst-msg {
	display: block;
}

.background-video {
	position: relative;
	width: auto;
	height: auto;
	overflow: hidden;
}

.vidiobg {
	width: 100%;
	height: 100vh;
	position: relative;
	background-color: #112334;
}

.vidiobg video {
	width: 100%;
}

.login-page {
	position: absolute;
	right: 0px;
	left: 0px;
	top: 0px;
	height: auto;
}


.login-logo img {
	width: 100%;
}

.login-module text {
	stroke-dasharray: 500;
	stroke-dashoffset: 500;
	animation: dash 7s infinite forwards, filling 5s ease-in forwards infinite;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 43px;
	letter-spacing: 1px;
}

@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes filling {
	from {
		fill: #eee;
		fill-opacity: 0;
	}

	to {
		fill: #fff;
		fill-opacity: 1;
	}
}

.captacha {
	display: flex;
	margin-bottom: 15px;
}

.captacha .capimg {
	width: 37%;
}

.capimg img {
	max-width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 100%;
}

.captacha .refresh {
	width: 15%;
	text-align: center;
	padding: 10px;
}

.captacha .input {
	width: 60%;
}

.pagination {
	justify-content: end;
}

.btn-xs {
	padding: 1px 5px;
}


.form-control.tdinpu {
	padding: 4px 10px;
	border-radius: 3px;
}

.bg-offwhite {
	background-color: #f7efe6;
	color: #6c0505;
}