
.cta-block {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Адаптивная раскладка для ПК */
@media (min-width: 768px) {
    .auth-layout {
        display: flex;
        gap: 30px;
        align-items: stretch;
    }
    
    .cta-block {
        flex: 1;
        margin: 0;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .form-box {
        flex: 1;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .js-fields-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 767px) {

    .auth-layout .form-box {
        max-width: 100%;
    }
}
.cta-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: #ffe24c;
    border: none;
    color: #333;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 226, 76, 0.3);
    color: #333;
    text-decoration: none;
}

.auth-cars-container {
    margin-bottom: 40px;
}
