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

.password {
    position: relative;
}
.password-control {
    position: absolute;
    top: 64px;
    right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(images/view.svg) 0 0 no-repeat;
}
.password-control.view {
    background: url(images/no-view.svg) 0 0 no-repeat;
}
.required-auth__td {
    position: relative;
}

/* Общий контейнер */
.error-modal-overlay {
    display: none;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* полупрозрачный фон */
    justify-content: center;
    align-items: center;
}

/* Контент */
.error-modal-content {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    max-width: 90vw;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    position: relative;
    font-size: 16px;
}

/* Кнопка закрытия */
.error-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.captcha-input-container {
    position: relative;
    max-width: 300px;
}

.captcha-input {
    width: 100%;
    padding-right: 40px; /* место для кнопки */
    height: 44px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #b9b9b9;
    padding-left: 10px;
    box-sizing: border-box;
}

.captcha-refresh-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #2db437;
}

.captcha-refresh-btn:hover {
    color: #219c2e;
}