.login-main .top-sec {
	padding: 20px;
}
.login-main .bottom-sec {
	display: flex;
    align-items: center;
    width: 100%;
    height: calc(100vh - 140px);
}
.login-main .login-left {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.top-sec .logo {
    display: flex;
    align-items: center;
    height: 100px;
    width: 200px;
}
.top-sec .logo image {
	vertical-align: middle;
    border-style: none;
}
.login-left .login-block {
	width: 400px;
}
.login-left .login-block h2 {
    font-size: 30px;
    font-weight: 700;
    color: $themeHeaderColor;
    margin: 0 0 10px 0;
}
.login-left .login-block p {
     font-size: 16px;
     font-weight: 500;
     color: #837bfe;
     margin: 0 0 30px 0;
}
.login-block .login-form, .login-block .field {
     display: flex;
     flex-direction: column;
}
.login-block .login-form .field label {
     text-transform: uppercase;
     color: $tableHeaderFontColor;
     font-size: 13px;
     font-weight: 400;
     margin-bottom: 7px;
}
.login-block .login-form .field input {
	margin-bottom: 20px;
    height: 50px;
}
.login-block .login-form a {
	text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: $secondaryColor;
}
.login-block .alert-danger {
	margin-top: 10px;
}
.login-main .login-right {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.login-main .login-right .bg-image {
     opacity: 0.84;
     display: block;
     width: 60%;
     object-fit: cover;
}
.forgot-div {
    justify-content: space-between;=
}
.forgot-inner-div, .forgot-div {
	display: flex;
    align-items: center;
}
.login-form input[type=checkbox] {
	height: 16px;
	width: 16px;
	margin: 0;
}
.login-form input[type="checkbox"]:enabled:checked {
     background-color: #002B4E !important;
     color: white;
}
.auth span, .forgot-div span {
	margin-left: 10px;
}
.auth {
	display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.auth-code {
	margin-bottom: 20px;
    height: 50px;
}
.login-form input[type="checkbox"]:enabled:checked {
    accent-color: #837bfe !important;
}
.login-btn {
    background-color: #134A93;
    color: #fff;
    height: 50px;
    margin-top: 20px;
}
@media only screen and (max-width: 1066px) {
	.login-main .bottom-sec {
		height: unset;
    	flex-wrap: wrap-reverse;
	}
	.login-main .login-left {
		margin-top: 20px;
		width: 100%;
	}
	.login-main .login-right {
		width: 100%;
	}
	.login-main .login-right .bg-image {
		width: 40%;
	}
}
@media only screen and (max-width: 768px) {
	.login-main .top-sec {
		background: rgb(19 74 147 / 10%);
	    text-align: center;
	    padding-bottom: 100px !important;
	}
	.top-sec .logo {
		width: 100%;
    	justify-content: center;
	}
	.top-sec .logo img {
		width: 200px;
	}
	.login-main .bottom-sec {
		position: relative;
	}
	.login-main .login-left {
		margin-top: 120px;
	}
	.login-main .login-right {
		position: absolute;
    	top: -96px;
	}
	.login-main .login-right .bg-image {
	    background: #fff;
	    border: 1px solid #eee;
	    padding: 20px;
	    border-radius: 20px;
	    width: 220px;
	}
	.login-btn {
		border-radius: 30px;
	}
}
@media only screen and (max-width: 479px) {
	.login-main .top-sec {
		padding: 15px;
	}
	.login-left .login-block {
		width: 335px;
	}
}