body {
    overflow: hidden;
    cursor: default;
}

#left {
    height: 100vh;
    width: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

#right {
    height: 100vh;
    width: calc(100% - 320px);
    position: absolute;
    right: 0;
    top: 0;
}

#left > a {
    display: block;
    text-align: center;
}

#left > a > img {
    width: 60%;
    margin-top: 30px;
}

#left .icon-login {
    font-size: 46px;
    display: inline-block;
    margin: 0 0 5px;
}

#left > form {
    width: 100%;
    text-align: center;
    padding: 0 20px 60px;
}

#left form > div > i {
    position: absolute;
    top: 7px;
    left: 10px;
    font-size: 16px;
}

#left div > i.bi-shield-lock {
    font-size: 15px;
}

#left form .form-control {
    padding-left: 32px;
}

#left .icon-pass {
    left: unset;
    right: 5px;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s linear;
}

#left .icon-pass:hover {
    background-color: #DDD;
}

#left .btn > i {
    margin-right: 5px;
    position: relative;
}

/* Custom BS */
.carousel-item > img {
    height: 100vh;
}

.btn {
    border-radius: 12px;
    padding-left: 15px;
    padding-right: 15px;
}

.carousel-inner img {
    width: auto;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(80%);
}

.carousel-caption {
    left: 5%;
    right: 5%;
    text-align: right;
    bottom: 1rem;
}

.carousel-indicators {
    bottom: 10px;
    margin-left: 5%;
    margin-right: 5%;
    justify-content: flex-end;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border-bottom: 0;
    border-top: 0;
    opacity: .4;
}

.carousel-indicators li.active {
    width: 26px;
    opacity: .7;
}

.toast {
    width: 280px;
    z-index: 999;
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: unset !important;
}

@media (max-width: 767px) {
    #left {
        width: 100%;
        padding-bottom: 70px;
    }

    #right {
        display: none;
    }

    .toast {
        width: calc(100% - 40px);
        right: 20px;
    }
}

@media (max-width: 575px) {
    #left > a > img {
        width: 50%;
    }

    .toast {
        width: calc(100% - 40px);
        right: 20px;
    }
}