:root {
    --bs-body-font-family: 'Poppins', sans-serif;
    --bs-body-font-size: 0.9375rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.375;
    --bs-body-color: #6d6b77;
    --bs-body-bg: #f8f7fa;
    --bg-color: #7367f0;
    --bs-heading-color: #444050;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);

    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(47, 43, 61, 0);
}

.btn-primary {
    background: #7367f0;
    border-color: #7367f0;
}


.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 23px;
}

.switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliderCheck {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.sliderCheck:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input[type="checkbox"]:checked + .sliderCheck {
    background-color: var(--bg-color);
}

input[type="checkbox"]:focus + .sliderCheck {
    box-shadow: 0 0 1px var(--bg-color);
}

input[type="checkbox"]:checked + .sliderCheck:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliderChecks */
.sliderCheck.round {
    border-radius: 34px;
}

.sliderCheck.round:before {
    border-radius: 50%;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.37;
    color: var(--bs-heading-color);
}

.app-brand {
    position: absolute;
    inset-block-start: 2.5rem;
    inset-inline-start: 1.5rem;
}

.login-wrapper {
    height: 100vh;
}

.app-brand {
    position: absolute;
}

.left-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.logo-left-img {
    max-width: 65%;
    max-height: 65%;

}

.logo-img-cover {
    position: absolute;
    width: 100%;
    bottom: 0%;
    left: 0%;
    height: 35%;
}

.form-section {
    background: #fff;

}

@media (max-width: 992px) {
    .left-image {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .form-section {
        padding: 2rem;
    }
}

.form-wrapper {
    width: 400px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6d6b77;
}

.forgotPasswordBtn {
    text-decoration: none;
    color: #7367f0;
}

button {
    width: 100%;
    margin-top: 0.5rem;
}

button:disabled {
    background: #7367f0 !important;
    border-color: #7367f0 !important;
}

button:hover {
    background: #7367f0 !important;
    border-color: #7367f0 !important;
}

.alert-danger {
    background: #db8a8a !important;
    border-color: #db8a8a !important;
    color: #ececec !important;
}

.btn-close {
    color: #ececec !important;
}

input::placeholder {
    color: #6d6b77 !important;
    font-size: 12px !important;
}

input {
    color: #646466 !important;
    font-size: 14px !important;
}

.emailInvalid,
.passwordInvalid {
    display: none;
    color: #dc3545 !important;
    font-size: 11px;
    margin: 3px 2px;
}

.invalid {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}