@import url('./typography.css');


a {
	text-decoration: none;
	color: var(--primary-color);
	transition: all .5s ease-in-out;
}

a:hover {
	color: var(--primary-color);
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	box-shadow: none;
}


/****New Css Start****/
.login-outr {
	background: url('../images/banner-bg.png');
	position: relative;
	min-height: calc(100vh - 56px);
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 20px 0;

	@media (max-width: 991px) {
		min-height: calc(100vh - 90px);
	}
}

.login-outr::after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 34, 68, 0.85);
	/* Dark Navy overlay */
	content: '';
}

.login-box {
	background: #ffffff;
	margin: 0 auto;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	position: relative;
	max-width: 1120px;
	z-index: 999;
	border-radius: 16px;
	overflow: hidden;
}

.login-box .form-section {
	padding: 50px 50px;
	border-left: solid 1px #f0f0f0;

	@media (max-width: 767px) {
		border-left: none;
		padding: 20px 20px;
	}
}

.auth-logo-inr {
	display: inline-block;
	overflow: hidden;
}

.auth-logo-inr img {
	width: 180px;
}

.login-box .info {
	position: relative;
	max-width: 420px;
	margin: 0 auto;
	height: 420px;
	text-align: center;
}

.login-box .info .box {
	position: absolute;
	max-width: 400px;
	min-width: 280px;
	margin: 0 auto;
	height: 400px;
	overflow: hidden;
	padding: 20px;
	border: solid 10px #f4f4f4;
	border-radius: 12px;
	background-color: #f8fbff;
}

.login-box .info .box span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	box-sizing: border-box
}

.login-box .info .box span::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 5px;
	background: #FFD700;
	/* Yellow */
	animation: animate 4s linear infinite;
}

@keyframes animate {
	0% {
		transform: scaleX(0);
		transform-origin: left
	}

	50% {
		transform: scaleX(1);
		transform-origin: left
	}

	50.1% {
		transform: scaleX(1);
		transform-origin: right
	}

	to {
		transform: scaleX(0);
		transform-origin: right
	}
}

.login-box .info .box span:nth-child(1) {
	transform: rotate(0)
}

.login-box .info .box span:nth-child(2) {
	transform: rotate(90deg)
}

.login-box .info .box span:nth-child(3) {
	transform: rotate(180deg)
}

.login-box .info .box span:nth-child(4) {
	transform: rotate(270deg)
}

.login-box .info .box .content {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: solid 1px rgba(0, 34, 68, 0.1);
	padding: 110px 20px;
	border-radius: 10px;

	@media (max-width: 767px) {
		padding: 60px 20px !important;
	}
}

.login-box .info .box .content h3 {
	font-weight: 700;
	font-size: 22px;
	color: #002244;
}

.login-box .info .box .content p {
	margin-bottom: 0;
	line-height: 26px;
	color: #555;
}

.common-form .form-control,
.common-form .form-select {
	font-size: 14px;
	color: #262834 !important;
	font-weight: 400;
	border: 1px solid #e0e0e0;
	background-color: #fff;
	height: 50px;
	border-radius: 6px;
	padding: 10px 15px;
}

.common-form .form-control:focus,
.common-form .form-select:focus {
	border-color: #002244;
	box-shadow: none;
}

.common-form .form-label {
	font-weight: 500;
	color: #333;
}

.forgot-password {
	color: #002244;
	text-decoration: none;
}

.forgot-password:hover {
	color: #004488;
}

.auth-copyright {
	background: transparent;
	color: #000;
	position: relative;
	z-index: 1000;
}

.auth-copyright p,
.auth-copyright a {
	color: #000 !important;
}

.pass-group {
	position: relative !important;
}

.toggle-password {
	position: absolute !important;
	right: 18px !important;
	top: 16px !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	z-index: 9999 !important;
	color: #637381;
}

.login-box .form-check .form-check-input {
	margin-top: 6px;
}

/****New Css End****/