.login-page .logo span,
.register-page .logo span {
    color: #3366bd;
}

.login-page a.forgot-pass,
.login-page a.signup,
.register-page a.forgot-pass,
.register-page a.signup {
    font-size: 0.8em;
    color: #3366bd;
}

.login-page,
.register-page {
    background: #f5f5f5;
    background-image: url('../images/auth/login.jpg');
    background-size:cover;
	width: 100%;
	min-height: auto;
	padding-bottom: 0;
	margin-left: 0
}

.dark-mode .login-page,
.dark-mode .register-page {
    background: #f5f5f5;
    background-image: url('../images/auth/auth-dark.jpg');
    background-size:cover;
	width: 100%;
	min-height: auto;
	padding-bottom: 0;
	margin-left: 0
}

.login-page .form-outer,
.register-page .form-outer {
	min-height: 100vh;
	max-width: 600px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative
}

.login-page .copyrights,
.register-page .copyrights {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%
}

.login-page .copyrights p,
.register-page .copyrights p {
	font-size: .6em;
	font-weight: 300;
	margin-bottom: 10px
}

.login-page .form-inner,
.register-page .form-inner {
	border-radius: 5px;
	padding: 40px 30px;
	background: #FFF;
	box-shadow: 0 0 35px rgba(0, 0, 0, .1);
	margin-bottom: 20px;
	width: 100%
}

.dark-mode .login-page .form-inner,
.dark-mode .register-page .form-inner {
	border-radius: 5px;
	padding: 40px 30px;
	background: #283046;
	box-shadow: 0 0 35px rgba(0, 0, 0, .1);
	margin-bottom: 20px;
	width: 100%
}

.login-page .logo,
.register-page .logo {
	font-size: 2em;
	font-weight: 500
}

.login-page p,
.register-page p {
	font-size: .8em;
	font-weight: 300;
	color: #aaa;
	margin-bottom: 0
}

.login-page form,
.register-page form {
	margin: 2rem auto 1rem;
	max-width: 300px
}

.login-page a.forgot-pass:focus,
.login-page a.forgot-pass:hover,
.login-page a.signup:focus,
.login-page a.signup:hover,
.register-page a.forgot-pass:focus,
.register-page a.forgot-pass:hover,
.register-page a.signup:focus,
.register-page a.signup:hover {
	color: #66b0ff;
	text-decoration: none
}

.login-page a.forgot-pass,
.register-page a.forgot-pass {
	display: block
}

.login-page a.create-account,
.register-page a.create-account {
	border-radius: 50px;
	font-size: .75em;
	margin-top: 10px;
	color: #999;
	text-transform: uppercase
}

.login-page .terms-conditions,
.register-page .terms-conditions {
	margin-top: 20px
}

.login-page small,
.register-page small {
	font-size: .65em;
	color: #aaa;
	line-height: .9em
}

@media (min-width:768px) {
	.login-page p,
	.register-page p {
		font-size: .9em
	}
	.login-page form label.label-custom,
	.register-page form label.label-custom {
		font-size: .9em
	}
	.login-page form small,
	.register-page form small {
		font-size: .8em
	}
	.login-page .terms-conditions label,
	.register-page .terms-conditions label {
		font-size: .9em
	}
	.login-page a.forgot-pass,
	.login-page a.signup,
	.register-page a.forgot-pass,
	.register-page a.signup {
		font-size: .8em
	}
	.login-page small,
	.register-page small {
		font-size: .8em
	}
	.login-page .copyrights p,
	.register-page .copyrights p {
		font-size: .85em;
		font-weight: 400
	}
}


.form-group-material {
	position: relative;
	margin-bottom: 15px;
	margin-top:15px;
}

input.input-material {
	    width: 100%;
    border: none;
    border: 1px solid #eee;
	border-radius:5px;
    padding: 10px 20px;
    color: #3366bd !important;
    font-weight: 500;
    font-size: 20px;
}

.dark-mode input.input-material {
    background: #283046
}

input.input-material~label {
	color: #c0c9d3;
	position: absolute;
	top: 14px;
	left: 20px;
	cursor: text;
	-webkit-transition: all .2s;
	transition: all .2s;
	font-weight: 500
}

input.input-material~label.error {
	color: #dc3545;
	font-size: .75em;
	position: absolute;
	top: auto;
	bottom: -30px;
	left: 0
}

input.input-material:focus {
    border-color: #3366bd;
    outline: none;
}

input.input-material~label.active {
    font-size: 0.8em;
    top: -20px;
    color: #3366bd;
}

input.form-control-custom:checked+label::before {
    background: #3366bd !important;
}

.btn {
    font-weight: 400;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    padding: .45rem .75rem;
    font-size: .9rem;
    line-height: 1.5;
    -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}


.btn-primary {
    color: color-yiq(#3366bd);
    background-color: #3366bd;
    border-color: #3366bd;
}

.btn-primary:hover {
    background-color:darkblue;
    border-color: darkblue;
}

.btn-success {
	color: color-yiq(#34cea7);
	background-color: #34cea7;
	border-color: #34cea7
}

.btn-success:hover {
	color: color-yiq(#34cea7);
	background-color: #34cea7;
	border-color: #34cea7
}

.btn-success.focus,
.btn-success:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5);
	box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-info {
	color: color-yiq(#17a2b8);
	background-color: #17a2b8;
	border-color: #17a2b8
}

.btn-info:hover {
	color: color-yiq(#138496);
	background-color: #138496;
	border-color: #117a8b
}

.btn-info.focus,
.btn-info:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5);
	box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-dark {
	color: color-yiq(#343a40);
	background-color: #343a40;
	border-color: #343a40
}

.btn-dark:hover {
	color: color-yiq(#23272b);
	background-color: #23272b;
	border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}
.zeroMargin{
	margin:0px !important;
}
.zeroPadding{
	padding:0px !important;
}
.fullWidth{
	width:100% !important;
}
.loginPageBody{
	background-image: url('/public/Image/Login/newloginbg.png');
    background-size:cover;
	background-repeat: no-repeat;
	width: 100%;
	height:auto;
}
.loginPageAbstract {

	width: 100%;
	min-height: 400px;
	padding:0px;
	border-radius:10px;
}
.whiteBg{
	background-color: #ffffff;
}
.round5{
	border-radius:5px;
}
.round10{
	border-radius:10px;
}
.textCenter{
	text-align:center;
}
.padding10{
	padding:10px;
}
.padding20{
	padding:20px;
}
.padding40{
	padding:40px;
}
.vpaddingtop10{
	padding-top:10px;
}
.vPadding50{
	padding-top:50px;
	padding-bottom: 50px;
}
.rightBottomBorder{
	border-radius:0px 10px 10px 0px;
}
.leftBottomBorder{
	border-radius:10px 0px 0px 10px;
}
.rightFloat{
	float:right !important;
}
.leftFloat{
	float:left !important;
}
.loginPagePaddingTop{
	position:absolute;
	top:25%;
}
.leftGifSection{
	background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.verticalContentMiddle{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.forgotPasswordLink{
	margin-top:-10px;
	margin-bottom:20px;
}
.center-screen {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}


/* Special Media Queries for Mobile Screens */
@media only screen and (max-width: 480px) {

	.rightBottomBorder{
		border-radius:0px 0px 10px 10px;
	}
	.leftBottomBorder{
		border-radius:10px 10px 0px 0px;
	}
	.loginPagePaddingTop{
		padding-top:0px;
	}
	
}

/* Special Media Queries for Small Tablet */
@media (min-width: 600px) and (max-height: 800px) and (orientation: portrait) {
	.rightBottomBorder{
		border-radius:0px 0px 10px 10px;
	}
	.leftBottomBorder{
		border-radius:10px 10px 0px 0px;
	}
	.loginPagePaddingTop{
		padding-top:0px;
	}
	.col-sm-12.loginPageAbstract {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 85%;
		max-width: 85%;
		margin:0 auto;
	}
	
}
@media (min-width: 800px) and (max-height: 600px) and (orientation: landscape) {
	.rightBottomBorder{
		border-radius:0px 0px 10px 10px;
	}
	.leftBottomBorder{
		border-radius:10px 10px 0px 0px;
	}
	.loginPagePaddingTop{
		padding-top:0px;
	}
	
}

/* Special Media Queries for IPad */
@media (min-width: 768px) and (max-height: 1024px) and (orientation: portrait) {
	.rightBottomBorder{
		border-radius:0px 0px 10px 10px;
	}
	.leftBottomBorder{
		border-radius:10px 10px 0px 0px;
	}
	.loginPagePaddingTop{
		position: absolute;
    	top: 13%;
	}
	
	
}
@media (min-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
	.rightBottomBorder{
		border-radius:0px 10px 10px 0px;
	}
	.leftBottomBorder{
		border-radius:10px 0px 0px 10px;
	}
	.loginPagePaddingTop{
		position: absolute;
    	top: 8%;
	}

	
	
}

/* Special Media Queries for IPad Pro*/
@media (min-width: 1366px) and (max-height: 1024px) and (orientation: landscape) {
	
	.loginPageAbstract {
		padding:0px;
	}
	.loginPagePaddingTop {
		position: absolute;
		top: 16%;
	}
	
}
@media (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
	.rightBottomBorder{
		border-radius:0px 0px 10px 10px;
	}
	.leftBottomBorder{
		border-radius:10px 10px 0px 0px;
	}
	.col-lg-6:not(.loginPageAbstract) {
		-webkit-box-flex: 0;
		max-width: 100%;
		flex: 0 0 100%;
	}
	
}

