/*
 * Image Container
 * --------------------------------------------------
 */
.background-image-1 {
    background: url(../../img/login-background-1.jpg) no-repeat 60%; /* 90% */
    background-size: cover;
}

.background-image-2 {
    background: url(../../img/login-background-2.jpg) no-repeat 0%; /* 90% */
    background-size: cover;
}

.background-image-3 {
    background: url(../../img/login-background-3.jpg) no-repeat 80%; /* 90% */
    background-size: cover;
}

.background-image-4 {
    background: url(../../img/login-background-4.jpg) no-repeat 30%; /* 90% */
    background-size: cover;
}

#image-color-fade {
    background: linear-gradient(60deg, #003dff, #00b5ff);
    opacity: 0.9;
}

/*
 * Toggle Password
 * --------------------------------------------------
 */
#toggle-password {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

#toggle-password:hover {
    filter: brightness(1.2);
}