/* VARAIABLES */
:root {
    --color-violet: #157ca1;
    --color-button-gold: #333333;
    --color-button-success: rgb(40 168 69 / 54%);
}
.img-login {
	width: 100%;
	margin-bottom: 17px;
	max-width: 400px;
	border-radius: 10px;
	box-shadow: 0 0.125rem 0.25rem rgb(147 158 170 / 40%);
}
.authentication-wrapper {
	display: flex;
	flex-basis: 100%;
	min-height: 100vh;
	width: 100%;
}
.authentication-wrapper .d-none {
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.8;
}
.authentication-wrapper .w-px-400.mx-auto {
    width: 100%;
}
.authentication-wrapper .authentication-inner {
	width: 100%;
}
.authentication-wrapper.authentication-basic {
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.authentication-wrapper.authentication-cover {
	align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
	height: 100vh;
}
.authentication-wrapper.authentication-basic .authentication-inner {
	max-width: 25rem;
	position: relative;
}
.authentication-wrapper.authentication-basic .authentication-inner:before {
	width: 21rem;
	height: 21rem;
	content: " ";
	position: fixed;
	top: -100px;
	background: url("../../../img/pages/auth-top-left.png");
	background-size: contain;
}
.authentication-wrapper .form-control {
    display: block !important;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
    color: #797979 !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding-left: 9px !important;
}

.authentication-wrapper form label {
    font-weight: 400;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: inherit;
    color: #464646 !important;
}
.authentication-wrapper button {
    color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgb(147 158 170 / 40%);
    border-radius: 4px;
    padding: 9px 0;
    background-color: var(--color-violet);
    border: 1px solid var(--color-violet);
}
.authentication-wrapper button:hover {
	background-color: var(--color-button-gold);
    border: 1px solid var(--color-button-gold);
}
html:not([dir=rtl]) .authentication-wrapper.authentication-basic .authentication-inner:before {
	left: -100px;
}
[dir=rtl] .authentication-wrapper.authentication-basic .authentication-inner:before {
	right: -100px;
	transform: rotate(90deg);
}
.authentication-wrapper.authentication-basic .authentication-inner:after {
	width: 7rem;
	height: 14.125rem;
	content: " ";
	position: fixed;
	bottom: 0;
	background-image: url("../../../img/pages/auth-right-bottom.png");
	background-size: contain;
}
html:not([dir=rtl]) .authentication-wrapper.authentication-basic .authentication-inner:after {
	right: 0;
}
[dir=rtl] .authentication-wrapper.authentication-basic .authentication-inner:after {
	left: 0;
	transform: rotate(180deg);
}
.authentication-wrapper.authentication-basic .authentication-inner .card {
	z-index: 1;
}
.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand {
	margin-bottom: 2.5rem;
}
.authentication-wrapper .auth-input-wrapper .auth-input {
	max-width: 50px;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	font-size: 150%;
}

.authentication-cover-img {
	margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
	.authentication-wrapper .auth-input-wrapper .auth-input {
		font-size: 1.125rem;
	}
}
.light-style .authentication-wrapper .authentication-bg {
	background-color: #fff;
}

@media (min-height: 737px) {
	.authentication-cover-img {
		margin-bottom: 3rem;
	}
}
@media (min-width: 576px) {
	.p-sm-5 {
	    padding: 5rem!important;
	}
}

.btn-reset {
    background: #db346f !important;
    border: 1px solid #db346f !important;
    padding: 9px 18px !important;
}
.btn-primary, .btn-primary.disabled {
    background: var(--color-violet);
    border: 1px solid var(--color-violet);
}