.modern-auth-info {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b2341 0%, #123a63 55%, #1a4f81 100%);
    color: #fff;
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.22);
}

.auth-info-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 13px;
    margin-bottom: 18px;
}

.modern-auth-info h2 {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 14px;
    color: #ffffff;
}

.auth-info-desc {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 26px;
}

.auth-visual {
    position: relative;
    min-height: 360px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.45;
    animation: pulseGlow 5s ease-in-out infinite;
}

.glow-1 {
    width: 180px;
    height: 180px;
    background: #3ddc97;
    top: 20px;
    right: 30px;
}

.glow-2 {
    width: 160px;
    height: 160px;
    background: #4da3ff;
    bottom: 10px;
    left: 30px;
    animation-delay: 1.2s;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 2;
    animation: floatCard 4.8s ease-in-out infinite;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff6b6b; }
.dot.yellow { background: #ffd166; }
.dot.green { background: #06d6a0; }

.mockup-title {
    margin-right: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.mockup-body {
    display: flex;
    gap: 14px;
    padding: 16px;
}

.mockup-sidebar {
    width: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 8px;
}

.side-item {
    height: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.18);
}

.side-item.active {
    background: linear-gradient(90deg, #2dd4bf, #60a5fa);
}

.mockup-content {
    flex: 1;
}

.preview-card {
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}

.big-card {
    min-height: 120px;
}

.small-card {
    min-height: 90px;
}

.preview-line {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 12px;
}

.preview-line.w-50 { width: 50%; }
.preview-line.w-60 { width: 60%; }
.preview-line.w-70 { width: 70%; }
.preview-line.w-80 { width: 80%; }
.preview-line.w-90 { width: 90%; }

.preview-btn {
    width: 110px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.stat-box {
    border-radius: 16px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.stat-box span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.floating-badge {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 13px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-1 {
    top: 18px;
    left: 8px;
}

.badge-2 {
    bottom: 26px;
    right: 0;
    animation-delay: 1s;
}

.badge-3 {
    top: 130px;
    right: 14px;
    animation-delay: 2s;
}

.auth-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.auth-feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 18px 16px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.auth-feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    font-size: 24px;
    margin-bottom: 12px;
}

.auth-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.auth-feature-card p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.modern-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.modern-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
}

.modern-benefits .benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.08); opacity: 0.55; }
}

@media (max-width: 992px) {
    .modern-auth-info {
        margin-top: 24px;
    }

    .modern-auth-info h2 {
        font-size: 1.7rem;
    }

    .auth-visual {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .modern-auth-info {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .modern-auth-info h2 {
        font-size: 1.45rem;
        line-height: 1.9;
    }

    .auth-info-desc {
        font-size: 0.95rem;
        line-height: 2;
    }

    .auth-feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .mockup-body {
        gap: 10px;
        padding: 12px;
    }

    .mockup-sidebar {
        width: 44px;
        min-width: 44px;
    }

    .floating-badge {
        font-size: 11px;
        padding: 8px 10px;
    }

    .badge-1 {
        top: 10px;
        left: 0;
    }

    .badge-2 {
        bottom: 14px;
        right: 0;
    }

    .badge-3 {
        top: 96px;
        right: 8px;
    }

    .auth-visual {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .modern-auth-info {
        padding: 20px 14px;
    }

    .auth-info-badge {
        font-size: 12px;
        padding: 7px 12px;
    }

    .modern-auth-info h2 {
        font-size: 1.25rem;
    }

    .auth-info-desc {
        font-size: 0.9rem;
    }

    .auth-visual {
        min-height: 240px;
    }

    .floating-badge {
        display: none;
    }

    .mockup-header {
        padding: 12px;
    }

    .mockup-title {
        font-size: 12px;
    }

    .stat-box strong {
        font-size: 1rem;
    }

    .stat-box span,
    .auth-feature-card p {
        font-size: 0.82rem;
    }
}