div.bx-auth-reg span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:middle;}
div.bx-auth-reg div.bx-auth-secure-icon {background-image:url(images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-auth-reg div.bx-auth-secure-unlock {background-image:url(images/sec-unlocked.png);}

.bx-auth-reg .mess-send-email {
    text-align: center;
}

.bx-auth-reg form {
    position: relative;
}

.bx-auth-reg form[target^="formTarget"]:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    opacity: 0.8;
}

.bx-auth-reg form[target^="formTarget"]::after {
    content: '';
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    border: 6px solid rgb(0 87 188 / 25%);
    border-top-color: #0057BC;
    border-radius: 50%;
    animation: systemRegLoading 1s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    z-index: 10;
}

@keyframes systemRegLoading {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
