/* ==========================================================
   SHA CIP - Enterprise Login Page
   Version : 1.0.0
   ========================================================== */
.login-page {
	margin: 0;
	padding: 0;
	background: #f4f7fa;
	overflow: hidden;
	font-family: "Segoe UI", Arial, sans-serif;
}

/* ==========================================================
   LEFT PANEL
   ========================================================== */
.login-left {
	position: relative;
	background: url("../images/background/login-bg.jpg") center center
		no-repeat;
	background-size: cover;
	color: #FFF;
}

.login-overlay {
	position: absolute;
	inset: 0;
	background: rgba(7, 46, 94, .82);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px;
}

.login-brand {
	max-width: 600px;
}

.login-logo {
	width: 110px;
	margin-bottom: 25px;
}

.login-brand h1 {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 10px;
}

.login-brand h5 {
	color: #dbe8ff;
	margin-bottom: 25px;
	font-weight: 400;
}

.login-brand p {
	font-size: 17px;
	line-height: 1.8;
	margin-top: 25px;
	color: #eef4ff;
}

.login-version {
	position: absolute;
	left: 70px;
	bottom: 40px;
	color: #d8e7ff;
	font-size: 14px;
}

/* ==========================================================
   FEATURES
   ========================================================== */
.feature-list {
	margin-top: 40px;
}

.feature-item {
	margin-bottom: 18px;
	font-size: 17px;
	display: flex;
	align-items: center;
}

.feature-item i {
	color: #49d17d;
	margin-right: 15px;
	font-size: 18px;
}

/* ==========================================================
   RIGHT PANEL
   ========================================================== */
.login-right {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f4f7fa;
}

/* ==========================================================
   LOGIN CARD
   ========================================================== */
.login-card {
	width: 100%;
	max-width: 480px;
	background: #FFF;
	border-radius: 18px;
	padding: 45px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
	animation: fadeIn .5s ease;
}

.login-logo-small {
	width: 80px;
}

.login-card h3 {
	color: #0b5ed7;
	font-weight: 700;
}

.login-footer {
	color: #666;
	line-height: 1.7;
}

/* ==========================================================
   FORM
   ========================================================== */
.form-label {
	font-weight: 600;
	margin-bottom: 8px;
}

.form-control {
	height: 48px;
	border-radius: 8px;
	border: 1px solid #d9d9d9;
}

.form-control:focus {
	border-color: #0b5ed7;
	box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .15);
}

.input-group-text {
	background: #FFF;
	border-radius: 8px 0 0 8px;
}

#togglePassword {
	border-radius: 0 8px 8px 0;
}

.btn-primary {
	height: 52px;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 600;
	transition: .3s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(13, 110, 253, .30);
}

/* ==========================================================
   LINKS
   ========================================================== */
.forgot-link {
	color: #0b5ed7;
	text-decoration: none;
	font-weight: 500;
}

.forgot-link:hover {
	text-decoration: underline;
}

/* ==========================================================
   CHECKBOX
   ========================================================== */
.form-check-label {
	cursor: pointer;
}

/* ==========================================================
   LOADER
   ========================================================== */
.cip-loader {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, .75);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.loader-box {
	background: #FFF;
	padding: 35px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.loader-title {
	font-weight: 600;
	margin-top: 15px;
}

.loader-message {
	color: #666;
	font-size: 14px;
}

/* ==========================================================
   ALERTS
   ========================================================== */
.alert {
	border-radius: 8px;
}

/* ==========================================================
   ANIMATION
   ========================================================== */
@
keyframes fadeIn {from { opacity:0;
	transform: translateY(20px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media ( max-width :991px) {
	.login-right {
		padding: 30px;
	}
	.login-card {
		max-width: 550px;
		padding: 35px;
	}
}

@media ( max-width :768px) {
	.login-card {
		margin: 20px;
		padding: 30px;
	}
	.login-logo-small {
		width: 70px;
	}
	.login-card h3 {
		font-size: 28px;
	}
}

@media ( max-width :576px) {
	.login-card {
		padding: 25px;
		border-radius: 12px;
	}
	.btn-primary {
		height: 48px;
		font-size: 16px;
	}
}