.modal-title .fa-exclamation-triangle{
    color: #F89406;
}

input[type=checkbox].ace + .lbl::before {
    border-radius: 4px !important;
}

.body-background {
    margin: 0;
    height: 100vh;
    background-image: url('../images/login_background.png');
}

/* mobile */
@media (max-width: 480px) {
    .body-background {
        background-position: left;
    }
}

/* tablets */
@media (min-width: 481px) and (max-width: 1024px) {
    .body-background {
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
}

/* desktop */
@media (min-width: 1025px) {
    .body-background {
        background-position: center center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }
}