.social-auth {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 60px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-btn img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.vk { 
    background-color: #4a76a8; 
}

.vk:hover { 
    background-color: #3d5f8a; 
}

.ok { 
    background-color: #ee8208; 
}

.ok:hover { 
    background-color: #d67300; 
}

.mailru { 
    background-color: #168de2; 
}

.mailru:hover { 
    background-color: #1274c4; 
}

.fb { 
    background-color: #1877f2; 
}

.fb:hover { 
    background-color: #166fe5; 
}

.google { 
    background-color: #4285f4; 
}

.google:hover { 
    background-color: #3367d6; 
}

.yandex { 
    background-color: #ff0000; 
}

.yandex:hover { 
    background-color: #cc0000; 
}

/* Responsive design for social buttons */
@media (max-width: 768px) {
    .social-auth {
        justify-content: center;
        width: 100%;
    }
    
    .social-btn {
        flex: 1;
        min-width: auto;
    }
}
