label.invalid-input {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 5px;
	color: #d43f3a;
}

input.invalid-input {
	border: 1px solid #d43f3a;
}

input.valid-input {
	border-color: #dee2e6;
}

h2 img {
	display: inline-block;
	margin-right: 20px;
	max-height: 50px;
}

#loader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #ffffff url('../img/loading.gif') no-repeat center center;
	background-size: 150px 150px;
	display: none;
}

.mr-10 {
	margin-right: 10px;
}

.bottom-labels {
	display: flex;
	align-content: center;
	align-items: center;
	font-weight: bold;
	justify-content: space-between;
}

.username-label {
	font-weight: bold;
}

/* Login v2 */
body {
	background-color: #f8f9fd;
}
a {
	color: #2AB4C0;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
label {
	cursor: pointer;
}
.card {
	max-width: 600px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border: none;
}
.card-w-img {
	max-width: 900px;
}
.card-img-bg {
	background-image: url('../img/login-bg.jpg');
	background-size: cover;
	background-position: center;
	border-top-left-radius: var(--bs-border-radius);
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--bs-border-radius);
    border-bottom-right-radius: 0;
	z-index: 0;
	overflow: hidden;
	position: relative;
}
@media (max-width: 767.98px) {
    .card-img-bg {
        border-top-left-radius: var(--bs-border-radius);
        border-top-right-radius: var(--bs-border-radius);
        border-bottom-left-radius: 0;
	    border-bottom-right-radius: 0;
        min-height: 200px;
    }
}
.card-img-logo {
	position: relative;
	z-index: 5;
	max-width: 250px;
}
.form-control:focus {
	box-shadow: 0 0 0 0.25rem var(--bs-cust-primary-light);
	border-color: #76d8e1;
}
.form-check-input:checked {
	background-color: var(--custom-color-secondary);
	border-color: var(--custom-color-secondary);
}
.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem var(--bs-cust-primary-light);
	border-color: #76d8e1;
}
button[type='submit'] {
	background-image: linear-gradient(to right, rgba(48, 197, 210, 1) 0%, rgba(71, 16, 105, 1) 100%);
	border: none;
    transition: all 0.3s ease;
}
button[type='submit']:hover {
    opacity: 0.8;
}
.text-small {
	font-size: 0.9rem;
}
#strength-bar {
	transition: all 0.3s ease;
}
#strength-bar.strength-0 {
	background-color: #922530;
}
#strength-bar.strength-1 {
	background-color: #DC3545;
}
#strength-bar.strength-2 {
	background-color: #FFC107;
}
#strength-bar.strength-3 {
	background-color: #1B702F;
}
#strength-bar.strength-4 {
	background-color: #28A745;
}
.breadcrumb {
	background-color: #f8f8f8;
	font-size: 0.9rem;
}
.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #dee2e6;
	background-image: none;
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #dee2e6;
	box-shadow: none;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
	background-image: none;
}
.password-info.invalid {
	font-weight: bold;
}
.password-info.invalid {
	color: #dc3545;
}