.proxyScreenLock {
    position: fixed;
    border: none;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeIn 0.3s ease-in-out;
    z-index: 9999;
}

.proxyScreenLock.unlocking {
    animation: fadeOut 0.5s ease-in-out forwards;
}

/* iframe на весь экран */
.proxyScreenLock .auth-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* Лоадер для iframe */
.proxyScreenLock .auth-iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.proxyScreenLock .auth-iframe-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(100, 116, 139, 0.15);
    border-top-color: #64748b;
    border-radius: 50%;
    animation: iframeSpinner 0.8s linear infinite;
}

@keyframes iframeSpinner {
    to {
        transform: rotate(360deg);
    }
}

.alertDiv {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: #fff;
    padding: 12px 15px;
    background-color: #2d3741;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Roboto', 'Arial', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: opacity 0.3s, visibility 0.3s;
}

.alertDiv.visible {
    visibility: visible;
    opacity: 1;
    animation: slideIn 0.3s ease-out;
}

.alertDiv .alert-icon {
    font-size: 1.2rem;
    color: #f1c40f;
    flex-shrink: 0;
    margin-top: 2px;
}

.alertDiv .alert-content {
    flex: 1;
}

.alertDiv .alert-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 1rem;
}

.alertDiv .alert-message {
    opacity: 0.9;
    font-size: 0.9rem;
    white-space: nowrap;
}

.alertDiv .alert-timer {
    font-weight: 700;
    color: #fc6f5d;
    margin-left: 2px;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================ */
/* Баннер автозаполнения форм */
/* ============================================ */

/* Затемнение фона для центрированного режима */
.identyx-autofill-backdrop,
.identyx-autofill-backdrop *,
.identyx-autofill-backdrop *::before,
.identyx-autofill-backdrop *::after {
    box-sizing: border-box !important;
}

.identyx-autofill-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: 9998 !important;
}

.identyx-autofill-backdrop.visible {
    opacity: 1 !important;
}

/* CSS Reset для изоляции от стилей приложения */
.identyx-autofill-banner,
.identyx-autofill-banner *,
.identyx-autofill-banner *::before,
.identyx-autofill-banner *::after {
    box-sizing: border-box !important;
}

.identyx-autofill-banner {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    max-width: 450px !important;
    z-index: 2147483647 !important; /* Максимальный z-index */
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.identyx-autofill-banner.visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Центрированный режим (когда оригинальная форма скрыта) */
.identyx-autofill-banner.identyx-autofill-banner-centered {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    max-width: 480px !important;
    width: 90% !important;
    animation: identyx-fade-in-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

.identyx-autofill-banner.identyx-autofill-banner-centered.visible {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.identyx-autofill-banner.identyx-autofill-banner-centered .identyx-autofill-banner-content {
    padding: 0 !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 0 80px rgba(102, 126, 234, 0.3) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Новая карточка аутентификации */
.identyx-auth-card-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.identyx-auth-bg-orb {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(60px) !important;
    opacity: 0.5 !important;
    animation: identyx-float-orb 15s ease-in-out infinite !important;
}

.identyx-auth-bg-orb-1 {
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, #667eea 0%, transparent 70%) !important;
    top: -50px !important;
    left: -50px !important;
    animation-delay: 0s !important;
}

.identyx-auth-bg-orb-2 {
    width: 150px !important;
    height: 150px !important;
    background: radial-gradient(circle, #f093fb 0%, transparent 70%) !important;
    bottom: -30px !important;
    right: -30px !important;
    animation-delay: 5s !important;
}

.identyx-auth-bg-orb-3 {
    width: 180px !important;
    height: 180px !important;
    background: radial-gradient(circle, #764ba2 0%, transparent 70%) !important;
    top: 50% !important;
    right: -70px !important;
    animation-delay: 10s !important;
}

.identyx-auth-grid {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
    opacity: 0.4 !important;
}

.identyx-auth-card-content {
    position: relative !important;
    z-index: 1 !important;
    padding: 48px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
}

.identyx-auth-logo {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    animation: identyx-scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both !important;
}

.identyx-auth-logo-ring {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border: 2px solid transparent !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #667eea, #f093fb) border-box !important;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) !important;
    mask-composite: exclude !important;
    animation: identyx-rotate-ring 8s linear infinite !important;
}

.identyx-auth-logo-icon {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(102, 126, 234, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    color: #667eea !important;
}

.identyx-auth-logo-icon svg {
    width: 40px !important;
    height: 40px !important;
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6)) !important;
}

.identyx-auth-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    animation: identyx-fade-slide-up 0.6s ease both 0.2s !important;
}

.identyx-auth-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    padding: 0 !important;
}

.identyx-auth-subtitle {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.identyx-auth-brand {
    font-size: 36px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: 0.05em !important;
    margin-top: 4px !important;
    line-height: 1.4 !important;
    padding: 4px 0 !important;
    display: inline-block !important;
}

.identyx-auth-button {
    position: relative !important;
    width: 100% !important;
    max-width: 320px !important;
    padding: 18px 32px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    animation: identyx-fade-slide-up 0.6s ease both 0.4s !important;
}

.identyx-auth-button:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
}

.identyx-auth-button:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.identyx-auth-button-shine {
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    ) !important;
    transform: translateX(-100%) !important;
    animation: identyx-button-shine 3s ease-in-out infinite !important;
}

.identyx-auth-button-content {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.identyx-auth-button-icon {
    width: 20px !important;
    height: 20px !important;
    transition: transform 0.3s ease !important;
}

.identyx-auth-button:hover .identyx-auth-button-icon {
    transform: translateX(4px) !important;
}

.identyx-auth-button-text {
    line-height: 1 !important;
}

.identyx-auth-footer {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    animation: identyx-fade-slide-up 0.6s ease both 0.6s !important;
}

.identyx-auth-footer svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
}

.identyx-autofill-banner-content {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    position: relative !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.identyx-autofill-banner-icon-wrapper {
    position: relative !important;
    display: inline-block !important;
}

.identyx-autofill-banner-icon {
    font-size: 40px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    animation: identyx-rotate-icon 2s ease-in-out infinite !important;
    position: relative !important;
    z-index: 1 !important;
}

.identyx-autofill-banner-icon-glow {
    display: none !important;
}

@keyframes identyx-rotate-icon {
    0%, 100% {
        transform: rotate(0deg) !important;
    }
    25% {
        transform: rotate(-10deg) !important;
    }
    75% {
        transform: rotate(10deg) !important;
    }
}

@keyframes identyx-fade-in-scale {
    0% {
        opacity: 0 !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
    }
    100% {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

@keyframes identyx-pulse-glow {
    0%, 100% {
        opacity: 0.6 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 1 !important;
        transform: translate(-50%, -50%) scale(1.2) !important;
    }
}

@keyframes identyx-float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1) !important;
    }
    33% {
        transform: translate(20px, -20px) scale(1.1) !important;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) !important;
    }
}

@keyframes identyx-scale-in {
    0% {
        opacity: 0 !important;
        transform: scale(0.3) rotate(-180deg) !important;
    }
    70% {
        transform: scale(1.1) rotate(10deg) !important;
    }
    100% {
        opacity: 1 !important;
        transform: scale(1) rotate(0deg) !important;
    }
}

@keyframes identyx-rotate-ring {
    0% {
        transform: rotate(0deg) !important;
    }
    100% {
        transform: rotate(360deg) !important;
    }
}

@keyframes identyx-fade-slide-up {
    0% {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }
    100% {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes identyx-button-shine {
    0% {
        transform: translateX(-100%) !important;
    }
    50%, 100% {
        transform: translateX(100%) !important;
    }
}

.identyx-autofill-banner-text {
    flex: 1 !important;
    min-width: 0 !important;
}

.identyx-autofill-banner-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    line-height: 1.4 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
}

.identyx-autofill-banner-title-accent {
    display: inline-block !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3) !important;
    letter-spacing: 0.02em !important;
}

.identyx-autofill-banner-subtitle {
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.95 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
}

.identyx-autofill-banner-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #667eea !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1 !important;
}

.identyx-autofill-banner-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
    background: #f8f9ff !important;
}

.identyx-autofill-banner-button:active {
    transform: translateY(0) !important;
}

.identyx-autofill-banner-button-icon {
    font-size: 19px !important;
    line-height: 1 !important;
    transition: transform 0.2s ease !important;
}

.identyx-autofill-banner-button:hover .identyx-autofill-banner-button-icon {
    transform: translateX(4px) !important;
}

.identyx-autofill-banner.identyx-autofill-banner-centered .identyx-autofill-banner-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(102, 126, 234, 0.4) !important;
    background: #f8f9ff !important;
}

.identyx-autofill-banner-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.identyx-autofill-banner-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg) !important;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .identyx-autofill-banner {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }

    .identyx-autofill-banner-content {
        flex-direction: column !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .identyx-autofill-banner-button {
        width: 100% !important;
        justify-content: center !important;
    }

    .identyx-autofill-banner-icon {
        font-size: 32px !important;
    }

    .identyx-autofill-banner.identyx-autofill-banner-centered {
        width: 95% !important;
        max-width: 400px !important;
    }

    .identyx-auth-card-content {
        padding: 36px 24px !important;
        gap: 24px !important;
    }

    .identyx-auth-logo {
        width: 64px !important;
        height: 64px !important;
    }

    .identyx-auth-logo-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    .identyx-auth-title {
        font-size: 24px !important;
    }

    .identyx-auth-subtitle {
        font-size: 14px !important;
    }

    .identyx-auth-brand {
        font-size: 30px !important;
    }

    .identyx-auth-button {
        padding: 16px 28px !important;
        font-size: 15px !important;
    }

    .identyx-auth-button-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .identyx-auth-footer {
        font-size: 12px !important;
    }
}

/* Анимация автоматического входа */
.identyx-auto-login-loader {
    box-sizing: border-box !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: radial-gradient(circle at center, rgba(30, 58, 138, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%) !important;
    backdrop-filter: blur(8px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    animation-name: identyxFadeIn !important;
    animation-duration: 0.3s !important;
    animation-timing-function: ease-out !important;
    animation-fill-mode: both !important;
}


.identyx-auto-login-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
    text-align: center !important;
}

/* Спиннер - три вращающихся круга */
.identyx-auto-login-spinner {
    display: block !important;
    position: relative !important;
    width: 120px !important;
    height: 120px !important;
}

.identyx-auto-login-spinner-circle {
    display: block !important;
    position: absolute !important;
    border-radius: 50% !important;
    border: 4px solid transparent !important;
    box-sizing: border-box !important;
}

.identyx-auto-login-spinner-circle:nth-child(1) {
    width: 120px !important;
    height: 120px !important;
    top: 0 !important;
    left: 0 !important;
    border-top-color: #60a5fa !important;
    border-right-color: #60a5fa !important;
    animation-name: identyxRotate !important;
    animation-duration: 1.5s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
}

.identyx-auto-login-spinner-circle:nth-child(2) {
    width: 90px !important;
    height: 90px !important;
    top: 15px !important;
    left: 15px !important;
    border-bottom-color: #3b82f6 !important;
    border-left-color: #3b82f6 !important;
    animation-name: identyxRotate !important;
    animation-duration: 2s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-direction: reverse !important;
}

.identyx-auto-login-spinner-circle:nth-child(3) {
    width: 60px !important;
    height: 60px !important;
    top: 30px !important;
    left: 30px !important;
    border-top-color: #2563eb !important;
    border-right-color: #2563eb !important;
    animation-name: identyxRotate !important;
    animation-duration: 2.5s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-direction: normal !important;
}

/* Центральная иконка */
.identyx-auto-login-icon {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 40px !important;
    height: 40px !important;
    color: #60a5fa !important;
    transform: translate(-50%, -50%) !important;
    animation-name: identyxPulse !important;
    animation-duration: 2s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
}

.identyx-auto-login-icon svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6)) !important;
}

.identyx-auto-login-icon svg path {
    stroke: currentColor !important;
    fill: none !important;
}

/* Текст */
.identyx-auto-login-text {
    display: block !important;
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
    animation-name: identyxTextGlow !important;
    animation-duration: 2s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
}

.identyx-auto-login-subtext {
    display: block !important;
    color: #93c5fd !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-align: center !important;
    margin-top: -16px !important;
}

/* Пульсирующие точки */
.identyx-auto-login-dots {
    display: flex !important;
    gap: 12px !important;
    margin-top: 8px !important;
}

.identyx-auto-login-dot {
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #60a5fa !important;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.8) !important;
    animation-name: identyxDotBounce !important;
    animation-duration: 1.4s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
}

.identyx-auto-login-dot:nth-child(1) {
    animation-delay: 0s !important;
}

.identyx-auto-login-dot:nth-child(2) {
    animation-delay: 0.2s !important;
}

.identyx-auto-login-dot:nth-child(3) {
    animation-delay: 0.4s !important;
}

/* Кнопка отмены */
.identyx-auto-login-cancel {
    display: block !important;
    margin-top: 24px !important;
    padding: 12px 32px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}

.identyx-auto-login-cancel:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.identyx-auto-login-cancel:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

/* Анимации */
@keyframes identyxRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes identyxPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes identyxTextGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    }
}

@keyframes identyxDotBounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes identyxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}