@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&amp;display=swap);
.auth-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}
body {
    background: #ffffff;
}

.auth-bg .bg-overlay {
    opacity: .9
}

@media (min-width:768px) {
    .auth-bg {
        height: 100vh
    }
}

.auth-full-page-content {
    min-height: 100vh
}

.auth-logo .logo-txt {
    color: var(--bs-dark);
    font-size: 20px
}

.auth-pass-inputgroup input[type=input]+.btn .mdi-eye-outline:before {
    content: "\f06d1"
}

.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, .1);
    bottom: -50px;
    -webkit-animation: square 20s infinite;
    animation: square 20s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear
}

.bg-bubbles li:nth-child(1) {
    left: 10%
}

.bg-bubbles li:nth-child(2) {
    left: 20%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 17s;
    animation-duration: 17s
}

.bg-bubbles li:nth-child(3) {
    left: 25%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.bg-bubbles li:nth-child(4) {
    left: 40%;
    width: 80px;
    height: 80px;
    -webkit-animation-duration: 22s;
    animation-duration: 22s
}

.bg-bubbles li:nth-child(5) {
    left: 70%;
    width: 90px;
    height: 90px
}

.bg-bubbles li:nth-child(6) {
    left: 70%;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.bg-bubbles li:nth-child(7) {
    left: 32%;
    width: 150px;
    height: 150px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s
}

.bg-bubbles li:nth-child(8) {
    left: 55%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s
}

.bg-bubbles li:nth-child(9) {
    left: 25%;
    width: 50px;
    height: 50px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 40s;
    animation-duration: 40s
}

.bg-bubbles li:nth-child(10) {
    left: 90%;
    width: 140px;
    height: 140px;
    -webkit-animation-delay: 11s;
    animation-delay: 11s
}

@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg)
    }
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg)
    }
}
.btn-primary {
    box-shadow: 0 2px 6px 0 #597bb4;
    border-radius: 6px;
}
.auth-full-page-content {
    padding: 10px 50px 10px 50px !important;
}
@media screen and (max-width:400px) {
    .auth-full-page-content {
        padding: 10px 20px 10px 20px !important;
    }
}
.form-control{
    background-color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    color: black;
    border-radius: 5px;
}
.bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    opacity: .7;
    background-color: #85858594 !important;
}