/* Background container form */
.custom-container-form {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.custom-container-form::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 30, 61, .6) 0, rgba(0, 0, 0, .1) 41.42%, rgba(0, 0, 0, .3) 100%)
}

.container-login {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.login-copy-right-container {
    font-weight: bold;
    color: #fff;
}