.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
}

.box-login {
    border: 1px solid white;
    padding: 24px;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
}

.title-login {
    border-left: 5px solid var(--secondary);
    border-radius: 5px;
    padding-left: 16px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 800;
}

.input-login {
    background: var(--primary) !important;
    color: white !important;
}

.caption-login {
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
}

.bg-holder {
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.desktop {
    display: none !important;
}
.mobile {
    display: block !important;
}
@media (min-width: 876px) {
    .desktop {
        display: block !important;
    }
    .mobile {
        display: none !important;
    }
}
